A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://matplotlib.org/stable/gallery/../tutorials/../users/explain/axes/tight_layout_guide.html below:

Tight layout guide — Matplotlib 3.10.3 documentation

Tight layout guide#

How to use tight-layout to fit plots within your figure cleanly.

Tip

tight_layout was the first layout engine in Matplotlib. The more modern and more capable Constrained Layout should typically be used instead.

tight_layout automatically adjusts subplot params so that the subplot(s) fits in to the figure area. This is an experimental feature and may not work for some cases. It only checks the extents of ticklabels, axis labels, and titles.

Simple example#

With the default Axes positioning, the axes title, axis labels, or tick labels can sometimes go outside the figure area, and thus get clipped.

To prevent this, the location of Axes needs to be adjusted. For subplots, this can be done manually by adjusting the subplot parameters using Figure.subplots_adjust. Figure.tight_layout does this automatically.

Note that matplotlib.pyplot.tight_layout() will only adjust the subplot params when it is called. In order to perform this adjustment each time the figure is redrawn, you can call fig.set_tight_layout(True), or, equivalently, set rcParams["figure.autolayout"] (default: False) to True.

When you have multiple subplots, often you see labels of different Axes overlapping each other.

tight_layout() will also adjust spacing between subplots to minimize the overlaps.

tight_layout() can take keyword arguments of pad, w_pad and h_pad. These control the extra padding around the figure border and between subplots. The pads are specified in fraction of fontsize.

tight_layout() will work even if the sizes of subplots are different as far as their grid specification is compatible. In the example below, ax1 and ax2 are subplots of a 2x2 grid, while ax3 is of a 1x2 grid.

It works with subplots created with subplot2grid(). In general, subplots created from the gridspec (Arranging multiple Axes in a Figure) will work.

plt.close('all')
fig = plt.figure()

ax1 = plt.subplot2grid((3, 3), (0, 0))
ax2 = plt.subplot2grid((3, 3), (0, 1), colspan=2)
ax3 = plt.subplot2grid((3, 3), (1, 0), colspan=2, rowspan=2)
ax4 = plt.subplot2grid((3, 3), (1, 2), rowspan=2)

example_plot(ax1)
example_plot(ax2)
example_plot(ax3)
example_plot(ax4)

plt.tight_layout()

Although not thoroughly tested, it seems to work for subplots with aspect != "auto" (e.g., Axes with images).

Caveats# Use with GridSpec#

GridSpec has its own GridSpec.tight_layout method (the pyplot api pyplot.tight_layout also works).

You may provide an optional rect parameter, which specifies the bounding box that the subplots will be fit inside. The coordinates are in normalized figure coordinates and default to (0, 0, 1, 1) (the whole figure).

However, we do not recommend that this be used to manually construct more complicated layouts, like having one GridSpec in the left and one in the right side of the figure. For these use cases, one should instead take advantage of Nested Gridspecs, or the Figure subfigures.

Legends and annotations#

Pre Matplotlib 2.2, legends and annotations were excluded from the bounding box calculations that decide the layout. Subsequently, these artists were added to the calculation, but sometimes it is undesirable to include them. For instance in this case it might be good to have the Axes shrink a bit to make room for the legend:

However, sometimes this is not desired (quite often when using fig.savefig('outname.png', bbox_inches='tight')). In order to remove the legend from the bounding box calculation, we simply set its bounding leg.set_in_layout(False) and the legend will be ignored.

Use with AxesGrid1#

Limited support for mpl_toolkits.axes_grid1 is provided.

Colorbar#

If you create a colorbar with Figure.colorbar, the created colorbar is drawn in a Subplot as long as the parent Axes is also a Subplot, so Figure.tight_layout will work.

Another option is to use the AxesGrid1 toolkit to explicitly create an Axes for the colorbar.

Total running time of the script: (0 minutes 8.837 seconds)

Gallery generated by Sphinx-Gallery


RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4