doc_content stringlengths 1 386k | doc_id stringlengths 5 188 |
|---|---|
mpl_toolkits.axes_grid1.axes_grid.ImageGrid classmpl_toolkits.axes_grid1.axes_grid.ImageGrid(fig, rect, nrows_ncols, ngrids=None, direction='row', axes_pad=0.02, *, share_all=False, aspect=True, label_mode='L', cbar_mode=None, cbar_location='right', cbar_pad=None, cbar_size='5%', cbar_set_cax=True, axes_class=None)[s... | matplotlib._as_gen.mpl_toolkits.axes_grid1.axes_grid.imagegrid |
mpl_toolkits.axes_grid1.axes_rgb Classes
RGBAxes(*args[, pad]) 4-panel imshow (RGB, R, G, B). Functions
make_rgb_axes(ax[, pad, axes_class])
Parameters | matplotlib._as_gen.mpl_toolkits.axes_grid1.axes_rgb |
mpl_toolkits.axes_grid1.axes_rgb.make_rgb_axes mpl_toolkits.axes_grid1.axes_rgb.make_rgb_axes(ax, pad=0.01, axes_class=None, **kwargs)[source]
Parameters
padfloat
Fraction of the axes height.
Examples using mpl_toolkits.axes_grid1.axes_rgb.make_rgb_axes
Showing RGB channels using RGBAxes | matplotlib._as_gen.mpl_toolkits.axes_grid1.axes_rgb.make_rgb_axes |
mpl_toolkits.axes_grid1.axes_rgb.RGBAxes classmpl_toolkits.axes_grid1.axes_rgb.RGBAxes(*args, pad=0, **kwargs)[source]
Bases: object 4-panel imshow (RGB, R, G, B). Layout:
RGB R
G
B Subclasses can override the _defaultAxesClass attribute. Attributes
RGB_defaultAxesClass
The axes object for the three-c... | matplotlib._as_gen.mpl_toolkits.axes_grid1.axes_rgb.rgbaxes |
imshow_rgb(r, g, b, **kwargs)[source]
Create the four images {rgb, r, g, b}. Parameters
r, g, barray-like
The red, green, and blue arrays.
kwargsimshow kwargs
kwargs get unpacked into the imshow calls for the four images. Returns
rgbmatplotlib.image.AxesImage
rmatplotlib.image.AxesImage
gmatplotli... | matplotlib._as_gen.mpl_toolkits.axes_grid1.axes_rgb.rgbaxes#mpl_toolkits.axes_grid1.axes_rgb.RGBAxes.imshow_rgb |
mpl_toolkits.axes_grid1.axes_size Provides classes of simple units that will be used with AxesDivider class (or others) to determine the size of each axes. The unit classes define get_size method that returns a tuple of two floats, meaning relative and absolute sizes, respectively. Note that this class is nothing more ... | matplotlib._as_gen.mpl_toolkits.axes_grid1.axes_size |
mpl_toolkits.axes_grid1.axes_size.Add classmpl_toolkits.axes_grid1.axes_size.Add(a, b)[source]
Bases: mpl_toolkits.axes_grid1.axes_size._Base get_size(renderer)[source] | matplotlib._as_gen.mpl_toolkits.axes_grid1.axes_size.add |
get_size(renderer)[source] | matplotlib._as_gen.mpl_toolkits.axes_grid1.axes_size.add#mpl_toolkits.axes_grid1.axes_size.Add.get_size |
mpl_toolkits.axes_grid1.axes_size.AddList classmpl_toolkits.axes_grid1.axes_size.AddList(add_list)[source]
Bases: mpl_toolkits.axes_grid1.axes_size._Base get_size(renderer)[source] | matplotlib._as_gen.mpl_toolkits.axes_grid1.axes_size.addlist |
get_size(renderer)[source] | matplotlib._as_gen.mpl_toolkits.axes_grid1.axes_size.addlist#mpl_toolkits.axes_grid1.axes_size.AddList.get_size |
mpl_toolkits.axes_grid1.axes_size.AxesX classmpl_toolkits.axes_grid1.axes_size.AxesX(axes, aspect=1.0, ref_ax=None)[source]
Bases: mpl_toolkits.axes_grid1.axes_size._Base Scaled size whose relative part corresponds to the data width of the axes multiplied by the aspect. get_size(renderer)[source]
Examples us... | matplotlib._as_gen.mpl_toolkits.axes_grid1.axes_size.axesx |
get_size(renderer)[source] | matplotlib._as_gen.mpl_toolkits.axes_grid1.axes_size.axesx#mpl_toolkits.axes_grid1.axes_size.AxesX.get_size |
mpl_toolkits.axes_grid1.axes_size.AxesY classmpl_toolkits.axes_grid1.axes_size.AxesY(axes, aspect=1.0, ref_ax=None)[source]
Bases: mpl_toolkits.axes_grid1.axes_size._Base Scaled size whose relative part corresponds to the data height of the axes multiplied by the aspect. get_size(renderer)[source]
Examples u... | matplotlib._as_gen.mpl_toolkits.axes_grid1.axes_size.axesy |
get_size(renderer)[source] | matplotlib._as_gen.mpl_toolkits.axes_grid1.axes_size.axesy#mpl_toolkits.axes_grid1.axes_size.AxesY.get_size |
mpl_toolkits.axes_grid1.axes_size.Fixed classmpl_toolkits.axes_grid1.axes_size.Fixed(fixed_size)[source]
Bases: mpl_toolkits.axes_grid1.axes_size._Base Simple fixed size with absolute part = fixed_size and relative part = 0. get_size(renderer)[source]
Examples using mpl_toolkits.axes_grid1.axes_size.Fixed
... | matplotlib._as_gen.mpl_toolkits.axes_grid1.axes_size.fixed |
get_size(renderer)[source] | matplotlib._as_gen.mpl_toolkits.axes_grid1.axes_size.fixed#mpl_toolkits.axes_grid1.axes_size.Fixed.get_size |
mpl_toolkits.axes_grid1.axes_size.Fraction classmpl_toolkits.axes_grid1.axes_size.Fraction(fraction, ref_size)[source]
Bases: mpl_toolkits.axes_grid1.axes_size._Base An instance whose size is a fraction of the ref_size. >>> s = Fraction(0.3, AxesX(ax))
get_size(renderer)[source] | matplotlib._as_gen.mpl_toolkits.axes_grid1.axes_size.fraction |
get_size(renderer)[source] | matplotlib._as_gen.mpl_toolkits.axes_grid1.axes_size.fraction#mpl_toolkits.axes_grid1.axes_size.Fraction.get_size |
mpl_toolkits.axes_grid1.axes_size.from_any mpl_toolkits.axes_grid1.axes_size.from_any(size, fraction_ref=None)[source]
Create a Fixed unit when the first argument is a float, or a Fraction unit if that is a string that ends with %. The second argument is only meaningful when Fraction unit is created. >>> a = Size.f... | matplotlib._as_gen.mpl_toolkits.axes_grid1.axes_size.from_any |
mpl_toolkits.axes_grid1.axes_size.GetExtentHelper classmpl_toolkits.axes_grid1.axes_size.GetExtentHelper(ax, direction)[source]
Bases: object __call__(renderer)[source]
Call self as a function. | matplotlib._as_gen.mpl_toolkits.axes_grid1.axes_size.getextenthelper |
__call__(renderer)[source]
Call self as a function. | matplotlib._as_gen.mpl_toolkits.axes_grid1.axes_size.getextenthelper#mpl_toolkits.axes_grid1.axes_size.GetExtentHelper.__call__ |
mpl_toolkits.axes_grid1.axes_size.MaxExtent classmpl_toolkits.axes_grid1.axes_size.MaxExtent(artist_list, w_or_h)[source]
Bases: mpl_toolkits.axes_grid1.axes_size._Base Size whose absolute part is either the largest width or the largest height of the given artist_list. add_artist(a)[source]
get_size(renderer)... | matplotlib._as_gen.mpl_toolkits.axes_grid1.axes_size.maxextent |
add_artist(a)[source] | matplotlib._as_gen.mpl_toolkits.axes_grid1.axes_size.maxextent#mpl_toolkits.axes_grid1.axes_size.MaxExtent.add_artist |
get_size(renderer)[source] | matplotlib._as_gen.mpl_toolkits.axes_grid1.axes_size.maxextent#mpl_toolkits.axes_grid1.axes_size.MaxExtent.get_size |
mpl_toolkits.axes_grid1.axes_size.MaxHeight classmpl_toolkits.axes_grid1.axes_size.MaxHeight(artist_list)[source]
Bases: mpl_toolkits.axes_grid1.axes_size.MaxExtent Size whose absolute part is the largest height of the given artist_list. | matplotlib._as_gen.mpl_toolkits.axes_grid1.axes_size.maxheight |
mpl_toolkits.axes_grid1.axes_size.MaxWidth classmpl_toolkits.axes_grid1.axes_size.MaxWidth(artist_list)[source]
Bases: mpl_toolkits.axes_grid1.axes_size.MaxExtent Size whose absolute part is the largest width of the given artist_list. | matplotlib._as_gen.mpl_toolkits.axes_grid1.axes_size.maxwidth |
mpl_toolkits.axes_grid1.axes_size.Padded classmpl_toolkits.axes_grid1.axes_size.Padded(size, pad)[source]
Bases: mpl_toolkits.axes_grid1.axes_size._Base Return a instance where the absolute part of size is increase by the amount of pad. get_size(renderer)[source] | matplotlib._as_gen.mpl_toolkits.axes_grid1.axes_size.padded |
get_size(renderer)[source] | matplotlib._as_gen.mpl_toolkits.axes_grid1.axes_size.padded#mpl_toolkits.axes_grid1.axes_size.Padded.get_size |
mpl_toolkits.axes_grid1.axes_size.Scalable mpl_toolkits.axes_grid1.axes_size.Scalable[source]
alias of mpl_toolkits.axes_grid1.axes_size.Scaled | matplotlib._as_gen.mpl_toolkits.axes_grid1.axes_size.scalable |
mpl_toolkits.axes_grid1.axes_size.Scaled classmpl_toolkits.axes_grid1.axes_size.Scaled(scalable_size)[source]
Bases: mpl_toolkits.axes_grid1.axes_size._Base Simple scaled(?) size with absolute part = 0 and relative part = scalable_size. get_size(renderer)[source]
Examples using mpl_toolkits.axes_grid1.axes_s... | matplotlib._as_gen.mpl_toolkits.axes_grid1.axes_size.scaled |
get_size(renderer)[source] | matplotlib._as_gen.mpl_toolkits.axes_grid1.axes_size.scaled#mpl_toolkits.axes_grid1.axes_size.Scaled.get_size |
mpl_toolkits.axes_grid1.axes_size.SizeFromFunc classmpl_toolkits.axes_grid1.axes_size.SizeFromFunc(func)[source]
Bases: mpl_toolkits.axes_grid1.axes_size._Base get_size(renderer)[source] | matplotlib._as_gen.mpl_toolkits.axes_grid1.axes_size.sizefromfunc |
get_size(renderer)[source] | matplotlib._as_gen.mpl_toolkits.axes_grid1.axes_size.sizefromfunc#mpl_toolkits.axes_grid1.axes_size.SizeFromFunc.get_size |
mpl_toolkits.axes_grid1.inset_locator A collection of functions and objects for creating or placing inset axes. Classes
AnchoredLocatorBase(bbox_to_anchor, ...[, ...])
Parameters
AnchoredSizeLocator(bbox_to_anchor, x_size, ...)
Parameters
AnchoredZoomLocator(parent_axes, zoom, loc)
Parameters
BboxC... | matplotlib._as_gen.mpl_toolkits.axes_grid1.inset_locator |
mpl_toolkits.axes_grid1.inset_locator.AnchoredLocatorBase classmpl_toolkits.axes_grid1.inset_locator.AnchoredLocatorBase(bbox_to_anchor, offsetbox, loc, borderpad=0.5, bbox_transform=None)[source]
Bases: matplotlib.offsetbox.AnchoredOffsetbox Parameters
locstr
The box location. Valid locations are 'upper left... | matplotlib._as_gen.mpl_toolkits.axes_grid1.inset_locator.anchoredlocatorbase |
__call__(ax, renderer)[source]
Call self as a function. | matplotlib._as_gen.mpl_toolkits.axes_grid1.inset_locator.anchoredlocatorbase#mpl_toolkits.axes_grid1.inset_locator.AnchoredLocatorBase.__call__ |
draw(renderer)[source]
Update the location of children if necessary and draw them to the given renderer. | matplotlib._as_gen.mpl_toolkits.axes_grid1.inset_locator.anchoredlocatorbase#mpl_toolkits.axes_grid1.inset_locator.AnchoredLocatorBase.draw |
set(*, agg_filter=<UNSET>, alpha=<UNSET>, animated=<UNSET>, bbox_to_anchor=<UNSET>, child=<UNSET>, clip_box=<UNSET>, clip_on=<UNSET>, clip_path=<UNSET>, gid=<UNSET>, height=<UNSET>, in_layout=<UNSET>, label=<UNSET>, offset=<UNSET>, path_effects=<UNSET>, picker=<UNSET>, rasterized=<UNSET>, sketch_params=<UNSET>, snap=<U... | matplotlib._as_gen.mpl_toolkits.axes_grid1.inset_locator.anchoredlocatorbase#mpl_toolkits.axes_grid1.inset_locator.AnchoredLocatorBase.set |
mpl_toolkits.axes_grid1.inset_locator.AnchoredSizeLocator classmpl_toolkits.axes_grid1.inset_locator.AnchoredSizeLocator(bbox_to_anchor, x_size, y_size, loc, borderpad=0.5, bbox_transform=None)[source]
Bases: mpl_toolkits.axes_grid1.inset_locator.AnchoredLocatorBase Parameters
locstr
The box location. Valid l... | matplotlib._as_gen.mpl_toolkits.axes_grid1.inset_locator.anchoredsizelocator |
get_extent(renderer)[source]
Return the extent of the box as (width, height, x, y). This is the extent of the child plus the padding. | matplotlib._as_gen.mpl_toolkits.axes_grid1.inset_locator.anchoredsizelocator#mpl_toolkits.axes_grid1.inset_locator.AnchoredSizeLocator.get_extent |
set(*, agg_filter=<UNSET>, alpha=<UNSET>, animated=<UNSET>, bbox_to_anchor=<UNSET>, child=<UNSET>, clip_box=<UNSET>, clip_on=<UNSET>, clip_path=<UNSET>, gid=<UNSET>, height=<UNSET>, in_layout=<UNSET>, label=<UNSET>, offset=<UNSET>, path_effects=<UNSET>, picker=<UNSET>, rasterized=<UNSET>, sketch_params=<UNSET>, snap=<U... | matplotlib._as_gen.mpl_toolkits.axes_grid1.inset_locator.anchoredsizelocator#mpl_toolkits.axes_grid1.inset_locator.AnchoredSizeLocator.set |
mpl_toolkits.axes_grid1.inset_locator.AnchoredZoomLocator classmpl_toolkits.axes_grid1.inset_locator.AnchoredZoomLocator(parent_axes, zoom, loc, borderpad=0.5, bbox_to_anchor=None, bbox_transform=None)[source]
Bases: mpl_toolkits.axes_grid1.inset_locator.AnchoredLocatorBase Parameters
locstr
The box location.... | matplotlib._as_gen.mpl_toolkits.axes_grid1.inset_locator.anchoredzoomlocator |
get_extent(renderer)[source]
Return the extent of the box as (width, height, x, y). This is the extent of the child plus the padding. | matplotlib._as_gen.mpl_toolkits.axes_grid1.inset_locator.anchoredzoomlocator#mpl_toolkits.axes_grid1.inset_locator.AnchoredZoomLocator.get_extent |
set(*, agg_filter=<UNSET>, alpha=<UNSET>, animated=<UNSET>, bbox_to_anchor=<UNSET>, child=<UNSET>, clip_box=<UNSET>, clip_on=<UNSET>, clip_path=<UNSET>, gid=<UNSET>, height=<UNSET>, in_layout=<UNSET>, label=<UNSET>, offset=<UNSET>, path_effects=<UNSET>, picker=<UNSET>, rasterized=<UNSET>, sketch_params=<UNSET>, snap=<U... | matplotlib._as_gen.mpl_toolkits.axes_grid1.inset_locator.anchoredzoomlocator#mpl_toolkits.axes_grid1.inset_locator.AnchoredZoomLocator.set |
mpl_toolkits.axes_grid1.inset_locator.BboxConnector classmpl_toolkits.axes_grid1.inset_locator.BboxConnector(bbox1, bbox2, loc1, loc2=None, **kwargs)[source]
Bases: matplotlib.patches.Patch Connect two bboxes with a straight line. Parameters
bbox1, bbox2matplotlib.transforms.Bbox
Bounding boxes to connect.
... | matplotlib._as_gen.mpl_toolkits.axes_grid1.inset_locator.bboxconnector |
staticconnect_bbox(bbox1, bbox2, loc1, loc2=None)[source]
Helper function to obtain a Path from one bbox to another. Parameters
bbox1, bbox2matplotlib.transforms.Bbox
Bounding boxes to connect.
loc1{1, 2, 3, 4}
Corner of bbox1 to use. Valid values are: 'upper right' : 1,
'upper left' : 2,
'lower left' ... | matplotlib._as_gen.mpl_toolkits.axes_grid1.inset_locator.bboxconnector#mpl_toolkits.axes_grid1.inset_locator.BboxConnector.connect_bbox |
staticget_bbox_edge_pos(bbox, loc)[source]
Helper function to obtain the location of a corner of a bbox Parameters
bboxmatplotlib.transforms.Bbox
loc{1, 2, 3, 4}
Corner of bbox. Valid values are: 'upper right' : 1,
'upper left' : 2,
'lower left' : 3,
'lower right' : 4
Returns
x, yfloat
Coordina... | matplotlib._as_gen.mpl_toolkits.axes_grid1.inset_locator.bboxconnector#mpl_toolkits.axes_grid1.inset_locator.BboxConnector.get_bbox_edge_pos |
get_path()[source]
Return the path of this patch. | matplotlib._as_gen.mpl_toolkits.axes_grid1.inset_locator.bboxconnector#mpl_toolkits.axes_grid1.inset_locator.BboxConnector.get_path |
set(*, agg_filter=<UNSET>, alpha=<UNSET>, animated=<UNSET>, antialiased=<UNSET>, capstyle=<UNSET>, clip_box=<UNSET>, clip_on=<UNSET>, clip_path=<UNSET>, color=<UNSET>, edgecolor=<UNSET>, facecolor=<UNSET>, fill=<UNSET>, gid=<UNSET>, hatch=<UNSET>, in_layout=<UNSET>, joinstyle=<UNSET>, label=<UNSET>, linestyle=<UNSET>, ... | matplotlib._as_gen.mpl_toolkits.axes_grid1.inset_locator.bboxconnector#mpl_toolkits.axes_grid1.inset_locator.BboxConnector.set |
mpl_toolkits.axes_grid1.inset_locator.BboxConnectorPatch classmpl_toolkits.axes_grid1.inset_locator.BboxConnectorPatch(bbox1, bbox2, loc1a, loc2a, loc1b, loc2b, **kwargs)[source]
Bases: mpl_toolkits.axes_grid1.inset_locator.BboxConnector Connect two bboxes with a quadrilateral. The quadrilateral is specified by two... | matplotlib._as_gen.mpl_toolkits.axes_grid1.inset_locator.bboxconnectorpatch |
get_path()[source]
Return the path of this patch. | matplotlib._as_gen.mpl_toolkits.axes_grid1.inset_locator.bboxconnectorpatch#mpl_toolkits.axes_grid1.inset_locator.BboxConnectorPatch.get_path |
set(*, agg_filter=<UNSET>, alpha=<UNSET>, animated=<UNSET>, antialiased=<UNSET>, capstyle=<UNSET>, clip_box=<UNSET>, clip_on=<UNSET>, clip_path=<UNSET>, color=<UNSET>, edgecolor=<UNSET>, facecolor=<UNSET>, fill=<UNSET>, gid=<UNSET>, hatch=<UNSET>, in_layout=<UNSET>, joinstyle=<UNSET>, label=<UNSET>, linestyle=<UNSET>, ... | matplotlib._as_gen.mpl_toolkits.axes_grid1.inset_locator.bboxconnectorpatch#mpl_toolkits.axes_grid1.inset_locator.BboxConnectorPatch.set |
mpl_toolkits.axes_grid1.inset_locator.BboxPatch classmpl_toolkits.axes_grid1.inset_locator.BboxPatch(bbox, **kwargs)[source]
Bases: matplotlib.patches.Patch Patch showing the shape bounded by a Bbox. Parameters
bboxmatplotlib.transforms.Bbox
Bbox to use for the extents of this patch. **kwargs
Patch properti... | matplotlib._as_gen.mpl_toolkits.axes_grid1.inset_locator.bboxpatch |
get_path()[source]
Return the path of this patch. | matplotlib._as_gen.mpl_toolkits.axes_grid1.inset_locator.bboxpatch#mpl_toolkits.axes_grid1.inset_locator.BboxPatch.get_path |
set(*, agg_filter=<UNSET>, alpha=<UNSET>, animated=<UNSET>, antialiased=<UNSET>, capstyle=<UNSET>, clip_box=<UNSET>, clip_on=<UNSET>, clip_path=<UNSET>, color=<UNSET>, edgecolor=<UNSET>, facecolor=<UNSET>, fill=<UNSET>, gid=<UNSET>, hatch=<UNSET>, in_layout=<UNSET>, joinstyle=<UNSET>, label=<UNSET>, linestyle=<UNSET>, ... | matplotlib._as_gen.mpl_toolkits.axes_grid1.inset_locator.bboxpatch#mpl_toolkits.axes_grid1.inset_locator.BboxPatch.set |
mpl_toolkits.axes_grid1.inset_locator.inset_axes mpl_toolkits.axes_grid1.inset_locator.inset_axes(parent_axes, width, height, loc='upper right', bbox_to_anchor=None, bbox_transform=None, axes_class=None, axes_kwargs=None, borderpad=0.5)[source]
Create an inset axes with a given width and height. Both sizes used can... | matplotlib._as_gen.mpl_toolkits.axes_grid1.inset_locator.inset_axes |
mpl_toolkits.axes_grid1.inset_locator.InsetPosition classmpl_toolkits.axes_grid1.inset_locator.InsetPosition(parent, lbwh)[source]
Bases: object An object for positioning an inset axes. This is created by specifying the normalized coordinates in the axes, instead of the figure. Parameters
parentmatplotlib.axes.... | matplotlib._as_gen.mpl_toolkits.axes_grid1.inset_locator.insetposition |
__call__(ax, renderer)[source]
Call self as a function. | matplotlib._as_gen.mpl_toolkits.axes_grid1.inset_locator.insetposition#mpl_toolkits.axes_grid1.inset_locator.InsetPosition.__call__ |
mpl_toolkits.axes_grid1.inset_locator.mark_inset mpl_toolkits.axes_grid1.inset_locator.mark_inset(parent_axes, inset_axes, loc1, loc2, **kwargs)[source]
Draw a box to mark the location of an area represented by an inset axes. This function draws a box in parent_axes at the bounding box of inset_axes, and shows a co... | matplotlib._as_gen.mpl_toolkits.axes_grid1.inset_locator.mark_inset |
mpl_toolkits.axes_grid1.inset_locator.zoomed_inset_axes mpl_toolkits.axes_grid1.inset_locator.zoomed_inset_axes(parent_axes, zoom, loc='upper right', bbox_to_anchor=None, bbox_transform=None, axes_class=None, axes_kwargs=None, borderpad=0.5)[source]
Create an anchored inset axes by scaling a parent axes. For usage,... | matplotlib._as_gen.mpl_toolkits.axes_grid1.inset_locator.zoomed_inset_axes |
mpl_toolkits.axes_grid1.mpl_axes Classes
Axes(fig, rect, *[, facecolor, frameon, ...]) Build an Axes in a figure.
SimpleAxisArtist(axis, axisnum, spine)
SimpleChainedObjects(objects) | matplotlib._as_gen.mpl_toolkits.axes_grid1.mpl_axes |
mpl_toolkits.axes_grid1.mpl_axes.Axes classmpl_toolkits.axes_grid1.mpl_axes.Axes(fig, rect, *, facecolor=None, frameon=True, sharex=None, sharey=None, label='', xscale=None, yscale=None, box_aspect=None, **kwargs)[source]
Bases: matplotlib.axes._axes.Axes Build an Axes in a figure. Parameters
figFigure
The Ax... | matplotlib._as_gen.mpl_toolkits.axes_grid1.mpl_axes.axes |
classAxisDict(axes)[source]
Bases: dict __call__(*v, **kwargs)[source]
Call self as a function. | matplotlib._as_gen.mpl_toolkits.axes_grid1.mpl_axes.axes#mpl_toolkits.axes_grid1.mpl_axes.Axes.AxisDict |
__call__(*v, **kwargs)[source]
Call self as a function. | matplotlib._as_gen.mpl_toolkits.axes_grid1.mpl_axes.axes#mpl_toolkits.axes_grid1.mpl_axes.Axes.AxisDict.__call__ |
cla()[source]
Clear the Axes. | matplotlib._as_gen.mpl_toolkits.axes_grid1.mpl_axes.axes#mpl_toolkits.axes_grid1.mpl_axes.Axes.cla |
set(*, adjustable=<UNSET>, agg_filter=<UNSET>, alpha=<UNSET>, anchor=<UNSET>, animated=<UNSET>, aspect=<UNSET>, autoscale_on=<UNSET>, autoscalex_on=<UNSET>, autoscaley_on=<UNSET>, axes_locator=<UNSET>, axisbelow=<UNSET>, box_aspect=<UNSET>, clip_box=<UNSET>, clip_on=<UNSET>, clip_path=<UNSET>, facecolor=<UNSET>, frame_... | matplotlib._as_gen.mpl_toolkits.axes_grid1.mpl_axes.axes#mpl_toolkits.axes_grid1.mpl_axes.Axes.set |
mpl_toolkits.axes_grid1.mpl_axes.SimpleAxisArtist classmpl_toolkits.axes_grid1.mpl_axes.SimpleAxisArtist(axis, axisnum, spine)[source]
Bases: matplotlib.artist.Artist propertylabel
propertymajor_ticklabels
propertymajor_ticks
set(*, agg_filter=<UNSET>, alpha=<UNSET>, animated=<UNSET>, clip_box=<UNSET>... | matplotlib._as_gen.mpl_toolkits.axes_grid1.mpl_axes.simpleaxisartist |
set(*, agg_filter=<UNSET>, alpha=<UNSET>, animated=<UNSET>, clip_box=<UNSET>, clip_on=<UNSET>, clip_path=<UNSET>, gid=<UNSET>, in_layout=<UNSET>, label=<UNSET>, path_effects=<UNSET>, picker=<UNSET>, rasterized=<UNSET>, sketch_params=<UNSET>, snap=<UNSET>, transform=<UNSET>, url=<UNSET>, visible=<UNSET>, zorder=<UNSET>)... | matplotlib._as_gen.mpl_toolkits.axes_grid1.mpl_axes.simpleaxisartist#mpl_toolkits.axes_grid1.mpl_axes.SimpleAxisArtist.set |
set_label(txt)[source]
Set a label that will be displayed in the legend. Parameters
sobject
s will be converted to a string by calling str. | matplotlib._as_gen.mpl_toolkits.axes_grid1.mpl_axes.simpleaxisartist#mpl_toolkits.axes_grid1.mpl_axes.SimpleAxisArtist.set_label |
set_visible(b)[source]
Set the artist's visibility. Parameters
bbool | matplotlib._as_gen.mpl_toolkits.axes_grid1.mpl_axes.simpleaxisartist#mpl_toolkits.axes_grid1.mpl_axes.SimpleAxisArtist.set_visible |
toggle(all=None, ticks=None, ticklabels=None, label=None)[source] | matplotlib._as_gen.mpl_toolkits.axes_grid1.mpl_axes.simpleaxisartist#mpl_toolkits.axes_grid1.mpl_axes.SimpleAxisArtist.toggle |
mpl_toolkits.axes_grid1.mpl_axes.SimpleChainedObjects classmpl_toolkits.axes_grid1.mpl_axes.SimpleChainedObjects(objects)[source]
Bases: object __call__(*args, **kwargs)[source]
Call self as a function. | matplotlib._as_gen.mpl_toolkits.axes_grid1.mpl_axes.simplechainedobjects |
__call__(*args, **kwargs)[source]
Call self as a function. | matplotlib._as_gen.mpl_toolkits.axes_grid1.mpl_axes.simplechainedobjects#mpl_toolkits.axes_grid1.mpl_axes.SimpleChainedObjects.__call__ |
mpl_toolkits.axes_grid1.parasite_axes Classes
HostAxes alias of mpl_toolkits.axes_grid1.parasite_axes.AxesHostAxes
HostAxesBase(*args, **kwargs)
ParasiteAxes alias of mpl_toolkits.axes_grid1.parasite_axes.AxesParasite
ParasiteAxesAuxTrans alias of mpl_toolkits.axes_grid1.parasite_axes.AxesParasiteParasiteAuxT... | matplotlib._as_gen.mpl_toolkits.axes_grid1.parasite_axes |
mpl_toolkits.axes_grid1.parasite_axes.host_axes mpl_toolkits.axes_grid1.parasite_axes.host_axes(*args, axes_class=<class 'mpl_toolkits.axes_grid1.mpl_axes.Axes'>, figure=None, **kwargs)[source]
Create axes that can act as a hosts to parasitic axes. Parameters
figurematplotlib.figure.Figure
Figure to which the... | matplotlib._as_gen.mpl_toolkits.axes_grid1.parasite_axes.host_axes |
mpl_toolkits.axes_grid1.parasite_axes.host_axes_class_factory mpl_toolkits.axes_grid1.parasite_axes.host_axes_class_factory(axes_class)[source] | matplotlib._as_gen.mpl_toolkits.axes_grid1.parasite_axes.host_axes_class_factory |
mpl_toolkits.axes_grid1.parasite_axes.host_subplot mpl_toolkits.axes_grid1.parasite_axes.host_subplot(*args, axes_class=<class 'mpl_toolkits.axes_grid1.mpl_axes.Axes'>, figure=None, **kwargs)[source]
Create a subplot that can act as a host to parasitic axes. Parameters
figurematplotlib.figure.Figure
Figure to... | matplotlib._as_gen.mpl_toolkits.axes_grid1.parasite_axes.host_subplot |
mpl_toolkits.axes_grid1.parasite_axes.host_subplot_class_factory mpl_toolkits.axes_grid1.parasite_axes.host_subplot_class_factory(axes_class)[source] | matplotlib._as_gen.mpl_toolkits.axes_grid1.parasite_axes.host_subplot_class_factory |
mpl_toolkits.axes_grid1.parasite_axes.HostAxes mpl_toolkits.axes_grid1.parasite_axes.HostAxes[source]
alias of mpl_toolkits.axes_grid1.parasite_axes.AxesHostAxes | matplotlib._as_gen.mpl_toolkits.axes_grid1.parasite_axes.hostaxes |
mpl_toolkits.axes_grid1.parasite_axes.HostAxesBase classmpl_toolkits.axes_grid1.parasite_axes.HostAxesBase(*args, **kwargs)[source]
Bases: object cla()[source]
draw(renderer)[source]
get_aux_axes(tr=None, viewlim_mode='equal', axes_class=<class 'mpl_toolkits.axes_grid1.mpl_axes.Axes'>)[source]
Add a par... | matplotlib._as_gen.mpl_toolkits.axes_grid1.parasite_axes.hostaxesbase |
cla()[source] | matplotlib._as_gen.mpl_toolkits.axes_grid1.parasite_axes.hostaxesbase#mpl_toolkits.axes_grid1.parasite_axes.HostAxesBase.cla |
draw(renderer)[source] | matplotlib._as_gen.mpl_toolkits.axes_grid1.parasite_axes.hostaxesbase#mpl_toolkits.axes_grid1.parasite_axes.HostAxesBase.draw |
get_aux_axes(tr=None, viewlim_mode='equal', axes_class=<class 'mpl_toolkits.axes_grid1.mpl_axes.Axes'>)[source]
Add a parasite axes to this host. Despite this method's name, this should actually be thought of as an add_parasite_axes method. tr may be Transform, in which case the following relation will hold: parasite... | matplotlib._as_gen.mpl_toolkits.axes_grid1.parasite_axes.hostaxesbase#mpl_toolkits.axes_grid1.parasite_axes.HostAxesBase.get_aux_axes |
get_tightbbox(renderer, call_axes_locator=True, bbox_extra_artists=None)[source] | matplotlib._as_gen.mpl_toolkits.axes_grid1.parasite_axes.hostaxesbase#mpl_toolkits.axes_grid1.parasite_axes.HostAxesBase.get_tightbbox |
pick(mouseevent)[source] | matplotlib._as_gen.mpl_toolkits.axes_grid1.parasite_axes.hostaxesbase#mpl_toolkits.axes_grid1.parasite_axes.HostAxesBase.pick |
twin(aux_trans=None, axes_class=None)[source]
Create a twin of Axes with no shared axis. While self will have ticks on the left and bottom axis, the returned axes will have ticks on the top and right axis. | matplotlib._as_gen.mpl_toolkits.axes_grid1.parasite_axes.hostaxesbase#mpl_toolkits.axes_grid1.parasite_axes.HostAxesBase.twin |
twinx(axes_class=None)[source]
Create a twin of Axes with a shared x-axis but independent y-axis. The y-axis of self will have ticks on the left and the returned axes will have ticks on the right. | matplotlib._as_gen.mpl_toolkits.axes_grid1.parasite_axes.hostaxesbase#mpl_toolkits.axes_grid1.parasite_axes.HostAxesBase.twinx |
twiny(axes_class=None)[source]
Create a twin of Axes with a shared y-axis but independent x-axis. The x-axis of self will have ticks on the bottom and the returned axes will have ticks on the top. | matplotlib._as_gen.mpl_toolkits.axes_grid1.parasite_axes.hostaxesbase#mpl_toolkits.axes_grid1.parasite_axes.HostAxesBase.twiny |
mpl_toolkits.axes_grid1.parasite_axes.parasite_axes_auxtrans_class_factory mpl_toolkits.axes_grid1.parasite_axes.parasite_axes_auxtrans_class_factory(axes_class)[source]
[Deprecated] Notes Deprecated since version 3.4: | matplotlib._as_gen.mpl_toolkits.axes_grid1.parasite_axes.parasite_axes_auxtrans_class_factory |
mpl_toolkits.axes_grid1.parasite_axes.parasite_axes_class_factory mpl_toolkits.axes_grid1.parasite_axes.parasite_axes_class_factory(axes_class)[source] | matplotlib._as_gen.mpl_toolkits.axes_grid1.parasite_axes.parasite_axes_class_factory |
mpl_toolkits.axes_grid1.parasite_axes.ParasiteAxes mpl_toolkits.axes_grid1.parasite_axes.ParasiteAxes[source]
alias of mpl_toolkits.axes_grid1.parasite_axes.AxesParasite | matplotlib._as_gen.mpl_toolkits.axes_grid1.parasite_axes.parasiteaxes |
mpl_toolkits.axes_grid1.parasite_axes.ParasiteAxesAuxTrans mpl_toolkits.axes_grid1.parasite_axes.ParasiteAxesAuxTrans[source]
alias of mpl_toolkits.axes_grid1.parasite_axes.AxesParasiteParasiteAuxTrans | matplotlib._as_gen.mpl_toolkits.axes_grid1.parasite_axes.parasiteaxesauxtrans |
mpl_toolkits.axes_grid1.parasite_axes.ParasiteAxesAuxTransBase classmpl_toolkits.axes_grid1.parasite_axes.ParasiteAxesAuxTransBase(parent_axes, aux_transform, viewlim_mode=None, **kwargs)[source]
Bases: object [Deprecated] Notes Deprecated since version 3.4: apply_aspect(position=None)[source]
get_viewlim_... | matplotlib._as_gen.mpl_toolkits.axes_grid1.parasite_axes.parasiteaxesauxtransbase |
apply_aspect(position=None)[source] | matplotlib._as_gen.mpl_toolkits.axes_grid1.parasite_axes.parasiteaxesauxtransbase#mpl_toolkits.axes_grid1.parasite_axes.ParasiteAxesAuxTransBase.apply_aspect |
get_viewlim_mode()[source] | matplotlib._as_gen.mpl_toolkits.axes_grid1.parasite_axes.parasiteaxesauxtransbase#mpl_toolkits.axes_grid1.parasite_axes.ParasiteAxesAuxTransBase.get_viewlim_mode |
set_viewlim_mode(mode)[source] | matplotlib._as_gen.mpl_toolkits.axes_grid1.parasite_axes.parasiteaxesauxtransbase#mpl_toolkits.axes_grid1.parasite_axes.ParasiteAxesAuxTransBase.set_viewlim_mode |
update_viewlim()[source]
[Deprecated] Notes Deprecated since version 3.4: | matplotlib._as_gen.mpl_toolkits.axes_grid1.parasite_axes.parasiteaxesauxtransbase#mpl_toolkits.axes_grid1.parasite_axes.ParasiteAxesAuxTransBase.update_viewlim |
mpl_toolkits.axes_grid1.parasite_axes.ParasiteAxesBase classmpl_toolkits.axes_grid1.parasite_axes.ParasiteAxesBase(parent_axes, aux_transform=None, *, viewlim_mode=None, **kwargs)[source]
Bases: object apply_aspect(position=None)[source]
cla()[source]
get_images_artists()[source]
[Deprecated] Notes Dep... | matplotlib._as_gen.mpl_toolkits.axes_grid1.parasite_axes.parasiteaxesbase |
apply_aspect(position=None)[source] | matplotlib._as_gen.mpl_toolkits.axes_grid1.parasite_axes.parasiteaxesbase#mpl_toolkits.axes_grid1.parasite_axes.ParasiteAxesBase.apply_aspect |
cla()[source] | matplotlib._as_gen.mpl_toolkits.axes_grid1.parasite_axes.parasiteaxesbase#mpl_toolkits.axes_grid1.parasite_axes.ParasiteAxesBase.cla |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.