axes_grid.axes_divider

mpl_toolkits.axes_grid.axes_divider class mpl_toolkits.axes_grid.axes_divider.Divider(fig, pos, horizontal, vertical, aspect=None, anchor='C') This is the class that is used calculates the axes position. It divides the given rectangular area into several sub-rectangles. You initialize the divider by setting the horizontal and vertical lists of sizes (mpl_toolkits.axes_grid.axes_size) that the division will be based on. You then use the new_locator method to create a callable object that can

axes

axes matplotlib.axes class matplotlib.axes.Axes(fig, rect, axisbg=None, frameon=True, sharex=None, sharey=None, label='', xscale=None, yscale=None, **kwargs) The Axes contains most of the figure elements: Axis, Tick, Line2D, Text, Polygon, etc., and sets the coordinate system. The Axes instance supports callbacks through a callbacks attribute which is a CallbackRegistry instance. The events you can connect to are ?xlim_changed? and ?ylim_changed? and the callback will be called with func(ax

artists

artists matplotlib.artist class matplotlib.artist.Artist Bases: object Abstract base class for someone who renders into a FigureCanvas. add_callback(func) Adds a callback function that will be called whenever one of the Artist?s properties changes. Returns an id that is useful for removing the callback with remove_callback() later. aname = 'Artist' axes The Axes instance the artist resides in, or None. contains(mouseevent) Test whether the artist contains the mouse event. R

animation

animation matplotlib.animation class matplotlib.animation.AVConvBase Bases: matplotlib.animation.FFMpegBase args_key = 'animation.avconv_args' exec_key = 'animation.avconv_path' class matplotlib.animation.AVConvFileWriter(*args, **kwargs) Bases: matplotlib.animation.AVConvBase, matplotlib.animation.FFMpegFileWriter class matplotlib.animation.AVConvWriter(fps=5, codec=None, bitrate=None, extra_args=None, metadata=None) Bases: matplotlib.animation.AVConvBase, matplotlib.anim

afm

afm (Adobe Font Metrics interface) matplotlib.afm This is a python interface to Adobe Font Metrics Files. Although a number of other python implementations exist, and may be more complete than this, it was decided not to go with them because they were either: copyrighted or used a non-BSD compatible license had too many dependencies and a free standing lib was needed Did more than needed and it was easier to write afresh rather than figure out how to get just what was needed. It is pretty e