Figure¶
- class Figure[source]¶
Bases:
FigureThe
Figuresubclass used by proplot.- Parameters
refnum (
int, optional) – The reference subplot number. Therefwidth,refheight, andrefaspectkeyword args are applied to this subplot, and the aspect ratio is conserved for this subplot in theauto_layout. The default is the first subplot created in the figure.refaspect (
floator2-tupleoffloat, optional) – The reference subplot aspect ratio. If scalar, this indicates the width divided by height. If 2-tuple, this indicates the (width, height). Ignored if bothfigwidthandfigheightor bothrefwidthandrefheightwere passed. The default value is1or the “data aspect ratio” if the latter is explicitly fixed (as withimshowplots andGeoAxesprojections; seeset_aspect).refwidth, refheight (
unit-spec, default:rc['subplots.refwidth']=2.5) – The width, height of the reference subplot. If float, units are inches. If string, interpreted byunits. Ignored iffigwidth,figheight, orfigsizewas passed. If you specify just one,refaspectwill be respected.ref, aspect, axwidth, axheight – Aliases for
refnum,refaspect,refwidth,refheight. These may be deprecated in a future release.figwidth, figheight (
unit-spec, optional) – The figure width and height. Default behavior is to userefwidth. If float, units are inches. If string, interpreted byunits. If you specify just one,refaspectwill be respected.width, height – Aliases for
figwidth,figheight.figsize (
2-tuple, optional) – Tuple specifying the figure(width, height).sharex, sharey, share (
{0, False, 1, 'labels', 'labs', 2, 'limits', 'lims', 3, True, 4, 'all'}, default:rc['subplots.share']=True) – The axis sharing “level” for the x axis, y axis, or both axes. Options are as follows:0orFalse: No axis sharing. This also sets the defaultspanxandspanyvalues toFalse.1or'labels'or'labs': Only draw axis labels on the bottommost row or leftmost column of subplots. Tick labels still appear on every subplot.2or'limits'or'lims': As above but force the axis limits, scales, and tick locations to be identical. Tick labels still appear on every subplot.3orTrue: As above but only show the tick labels on the bottommost row and leftmost column of subplots.4or'all': As above but also share the axis limits, scales, and tick locations between subplots not in the same row or column.
spanx, spany, span (
boolor{0, 1}, default:rc['subplots.span']=True) – Whether to use “spanning” axis labels for the x axis, y axis, or both axes. Default isFalseifsharex,sharey, orshareare0orFalse. WhenTrue, a single, centered axis label is used for all axes with bottom and left edges in the same row or column. This can considerably redundancy in your figure. “Spanning” labels integrate with “shared” axes. For example, for a 3-row, 3-column figure, withsharey > 1andspany == True, your figure will have 1 y axis label instead of 9 y axis labels.alignx, aligny, align (
boolor{0, 1}, default:rc['subplots.align']=False) – Whether to “align” axis labels for the x axis, y axis, or both axes. Aligned labels always appear in the same row or column. This is ignored ifspanx,spany, orspanareTrue.left, right, top, bottom (
unit-spec, default:None) – The fixed space between the subplots and the figure edge. If float, units are em-widths. If string, interpreted byunits. IfNone, the space is determined automatically based on the tick and label settings. Ifrc['subplots.tight']isTrueortight=Truewas passed to the figure, the space is determined by the tight layout algorithm.wspace, hspace, space (
unit-spec, default:None) – The fixed space between grid columns, rows, or both. If float, units are em-widths. If string, interpreted byunits. IfNone, the space is determined automatically based on the font size and axis sharing settings. Ifrc['subplots.tight']isTrueortight=Truewas passed to the figure, the space is determined by the tight layout algorithm.tight (
bool, default::rc`subplots.tight`) – Whether automatic calls toauto_layoutshould include tight layout adjustments. If you manually specified a spacing in the call tosubplots, it will be used to override the tight layout spacing. For example, withleft=1, the left margin is set to 1 em-width, while the remaining margin widths are calculated automatically.wequal, hequal, equal (
bool, default:rc['subplots.equalspace']=False) – Whether to make the tight layout algorithm apply equal spacing between columns, rows, or both.wgroup, hgroup, group (
bool, default:rc['subplots.groupspace']=True) – Whether to make the tight layout algorithm just consider spaces between adjacent subplots instead of entire columns and rows of subplots.outerpad (
unit-spec, default:rc['subplots.outerpad']=0.5) – The scalar tight layout padding around the left, right, top, bottom figure edges. If float, units are em-widths. If string, interpreted byunits.innerpad (
unit-spec, default:rc['subplots.innerpad']=1.0) – The scalar tight layout padding between columns and rows. Synonymous withpad. If float, units are em-widths. If string, interpreted byunits.panelpad (
unit-spec, default:rc['subplots.panelpad']=0.5) – The scalar tight layout padding between subplots and their panels, colorbars, and legends and between “stacks” of these objects. If float, units are em-widths. If string, interpreted byunits.journal (
str, optional) – String corresponding to an academic journal standard used to control the figure widthfigwidthand, if specified, the figure heightfigheight. See the below table. Feel free to add to this table by submitting a pull request.Key
Size description
Organization
'aaas1'1-column
American Association for the Advancement of Science (e.g. Science)
'aaas2'2-column
”
'agu1'1-column
'agu2'2-column
”
'agu3'full height 1-column
”
'agu4'full height 2-column
”
'ams1'1-column
'ams2'small 2-column
”
'ams3'medium 2-column
”
'ams4'full 2-column
”
'nat1'1-column
'nat2'2-column
”
'pnas1'1-column
'pnas2'2-column
”
'pnas3'landscape page
”
- Other Parameters
rowlabels, collabels, llabels, tlabels, rlabels, blabels – Aliases for
leftlabelsandtoplabels, and forleftlabels,toplabels,rightlabels, andbottomlabels, respectively.leftlabels, toplabels, rightlabels, bottomlabels (sequence of
str, optional) – Labels for the subplots lying along the left, top, right, and bottom edges of the figure. The length of each list must match the number of subplots along the corresponding edge.leftlabelpad, toplabelpad, rightlabelpad, bottomlabelpad (
floatorunit-spec, default:rc['leftlabel.pad']=5.0,rc['toplabel.pad']=5.0,rc['rightlabel.pad']=5.0,rc['bottomlabel.pad']=5.0) – The padding between the labels and the axes content. If float, units are points. If string, interpreted byunits.leftlabels_kw, toplabels_kw, rightlabels_kw, bottomlabels_kw (dict-like, optional) – Additional settings used to update the labels with
text.update().figtitle – Alias for
suptitle.suptitle (
str, optional) – The figure “super” title, centered between the left edge of the leftmost subplot and the right edge of the rightmost subplot.suptitlepad (
float, default:rc['suptitle.pad']=5.0) – The padding between the super title and the axes content. If float, units are points. If string, interpreted byunits.suptitle_kw (optional) – Additional settings used to update the super title with
text.update().includepanels (
bool, default:False) – Whether to include panels when aligning figure “super titles” along the top of the subplot grid and when aligning thespanxx axis labels andspanyy axis labels along the sides of the subplot grid.**kwargs – Passed to
matplotlib.figure.Figure.
Attributes Summary
The single
GridSpecinstance used for all subplots in the figure.A
SubplotGridcontaining the numbered subplots in the figure.Methods Summary
add_axes(**kwargs)Add a non-subplot axes to the figure.
add_subplot(**kwargs)Add a subplot axes to the figure.
add_subplots(*args, **kwargs)Add an arbitrary grid of subplots to the figure.
auto_layout([renderer, aspect, tight, resize])Automatically adjust the figure size and subplot positions.
colorbar(**kwargs)Add a colorbar along the side of the figure.
format()Modify figure-wide labels and call
formatfor the input axes.legend(**kwargs)Add a legend along the side of the figure.
save(filename, **kwargs)Save the figure.
savefig(**kwargs)Save the figure.
set_canvas(**kwargs)Set the figure canvas.
set_size_inches(**kwargs)Set the figure size.
subplot(*args, **kwargs)Add a subplot axes to the figure.
subplots(*args, **kwargs)Add an arbitrary grid of subplots to the figure.