matplotlib.gridspec.GridSpecFromSubplotSpec#

classmatplotlib.gridspec.GridSpecFromSubplotSpec(nrows,ncols,subplot_spec,wspace=None,hspace=None,height_ratios=None,width_ratios=None)[source]#

Bases:GridSpecBase

GridSpec whose subplot layout parameters are inherited from thelocation specified by a given SubplotSpec.

Parameters:
nrows, ncolsint

Number of rows and number of columns of the grid.

subplot_specSubplotSpec

Spec from which the layout parameters are inherited.

wspace, hspacefloat, optional

SeeGridSpec for more details. If not specified default values(from the figure or rcParams) are used.

height_ratiosarray-like of lengthnrows, optional

SeeGridSpecBase for details.

width_ratiosarray-like of lengthncols, optional

SeeGridSpecBase for details.

get_subplot_params(figure=None)[source]#

Return a dictionary of subplot layout parameters.

get_topmost_subplotspec()[source]#

Return the topmostSubplotSpec instance associated with the subplot.

Examples usingmatplotlib.gridspec.GridSpecFromSubplotSpec#

Resize Axes with constrained layout

Resize Axes with constrained layout

Nested Gridspecs

Nested Gridspecs

Arranging multiple Axes in a Figure

Arranging multiple Axes in a Figure

Constrained layout guide

Constrained layout guide