matplotlib 3.5.1

Parameters
__init__(self, nrows, ncols, figure=None, left=None, bottom=None, right=None, top=None, wspace=None, hspace=None, width_ratios=None, height_ratios=None)

Parameters

nrows, ncols : int

The number of rows and columns of the grid.

figure : `~.figure.Figure`, optional

Only used for constrained layout to create a proper layoutgrid.

left, right, top, bottom : float, optional

Extent of the subplots as a fraction of figure width or height. Left cannot be larger than right, and bottom cannot be larger than top. If not given, the values will be inferred from a figure or rcParams at draw time. See also GridSpec.get_subplot_params .

wspace : float, optional

The amount of width reserved for space between subplots, expressed as a fraction of the average axis width. If not given, the values will be inferred from a figure or rcParams when necessary. See also GridSpec.get_subplot_params .

hspace : float, optional

The amount of height reserved for space between subplots, expressed as a fraction of the average axis height. If not given, the values will be inferred from a figure or rcParams when necessary. See also GridSpec.get_subplot_params .

width_ratios : array-like of length *ncols*, optional

Defines the relative widths of the columns. Each column gets a relative width of width_ratios[i] / sum(width_ratios) . If not given, all columns will have the same width.

height_ratios : array-like of length *nrows*, optional

Defines the relative heights of the rows. Each row gets a relative height of height_ratios[i] / sum(height_ratios) . If not given, all rows will have the same height.

Examples

See :

Local connectivity graph

Hover to see nodes names; edges to Self not shown, Caped at 50 nodes.

Using a canvas is more power efficient and can get hundred of nodes ; but does not allow hyperlinks; , arrows or text (beyond on hover)

SVG is more flexible but power hungry; and does not scale well to 50 + nodes.

All aboves nodes referred to, (or are referred from) current nodes; Edges from Self to other have been omitted (or all nodes would be connected to the central node "self" which is not useful). Nodes are colored by the library they belong to, and scaled with the number of references pointing them


File: /matplotlib/gridspec.py#335
type: <class 'function'>
Commit: