3
3
Constrained Layout Guide
4
4
================================
5
5
6
- How to use constrained- layout to fit plots within your figure cleanly.
6
+ Use * constrained layout* to fit plots within your figure cleanly.
7
7
8
- *constrained_layout * automatically adjusts subplots and decorations like
9
- legends and colorbars so that they fit in the figure window while still
10
- preserving, as best they can, the logical layout requested by the user.
8
+ *Constrained layout * automatically adjusts subplots so that decorations like tick
9
+ labels, legends, and colorbars do not overlap, while still preserving the
10
+ logical layout requested by the user.
11
11
12
- *constrained_layout* is similar to
13
- :doc:`tight_layout</tutorials/intermediate/tight_layout_guide>`,
14
- but uses a constraint solver to determine the size of axes that allows
15
- them to fit.
12
+ *Constrained layout* is similar to :doc:`Tight
13
+ layout</tutorials/intermediate/tight_layout_guide>`, but is substantially more
14
+ flexible. It handles colorbars placed on multiple axes
15
+ (:ref:`colorbar_placement`) nested layouts (`~.Figure.subfigures`) and Axes that
16
+ span rows or columns (`~.pyplot.subplot_mosaic`), striving to align spines from
17
+ axes in the same row or column. In addition, :ref:`Compressed layout
18
+ <compressed_layout>` will try and move fixed aspect-ratio axes closer together.
19
+ These features are described in this document, as well as some
20
+ :ref:`implementation details <cl_notes_on_algorithm>` discussed at the end.
16
21
17
- *constrained_layout * typically needs to be activated before any axes are
18
- added to a figure. Two ways of doing so are
22
+ *Constrained layout * typically needs to be activated before any axes are added to
23
+ a figure. Two ways of doing so are
19
24
20
25
* using the respective argument to :func:`~.pyplot.subplots` or
21
26
:func:`~.pyplot.figure`, e.g.::
22
27
23
28
plt.subplots(layout="constrained")
24
29
25
- * activate it via :ref:`rcParams<customizing-with-dynamic-rc-settings>`,
26
- like::
30
+ * activate it via :ref:`rcParams<customizing-with-dynamic-rc-settings>`, like::
27
31
28
32
plt.rcParams['figure.constrained_layout.use'] = True
29
33
30
34
Those are described in detail throughout the following sections.
31
35
32
- Simple Example
36
+ .. warning::
37
+
38
+ Calling ``plt.tight_layout()`` will turn off *constrained layout*!
39
+
40
+ Simple example
33
41
==============
34
42
35
43
In Matplotlib, the location of axes (including subplots) are specified in
36
- normalized figure coordinates. It can happen that your axis labels or
37
- titles (or sometimes even ticklabels) go outside the figure area, and are thus
44
+ normalized figure coordinates. It can happen that your axis labels or titles
45
+ (or sometimes even ticklabels) go outside the figure area, and are thus
38
46
clipped.
39
47
"""
40
48
@@ -93,21 +101,19 @@ def example_plot(ax, fontsize=12, hide_labels=False):
93
101
example_plot (ax )
94
102
95
103
# %%
104
+ #
96
105
# Colorbars
97
106
# =========
98
107
#
99
- # If you create a colorbar with `.Figure.colorbar`,
100
- # you need to make room for it. ``constrained_layout`` does this
101
- # automatically. Note that if you specify ``use_gridspec=True`` it will be
102
- # ignored because this option is made for improving the layout via
103
- # ``tight_layout``.
108
+ # If you create a colorbar with `.Figure.colorbar`, you need to make room for
109
+ # it. *Constrained layout* does this automatically. Note that if you
110
+ # specify ``use_gridspec=True`` it will be ignored because this option is made
111
+ # for improving the layout via ``tight_layout``.
104
112
#
105
113
# .. note::
106
114
#
107
115
# For the `~.axes.Axes.pcolormesh` keyword arguments (``pc_kwargs``) we use a
108
- # dictionary. Below we will assign one colorbar to a number of axes each
109
- # containing a `~.cm.ScalarMappable`; specifying the norm and colormap
110
- # ensures the colorbar is accurate for all the axes.
116
+ # dictionary to keep the calls consistent across this document.
111
117
112
118
arr = np .arange (100 ).reshape ((10 , 10 ))
113
119
norm = mcolors .Normalize (vmin = 0. , vmax = 100. )
@@ -142,7 +148,7 @@ def example_plot(ax, fontsize=12, hide_labels=False):
142
148
# Suptitle
143
149
# =========
144
150
#
145
- # ``constrained_layout`` can also make room for `~.Figure.suptitle`.
151
+ # *Constrained layout* can also make room for `~.Figure.suptitle`.
146
152
147
153
fig , axs = plt .subplots (2 , 2 , figsize = (4 , 4 ), layout = "constrained" )
148
154
for ax in axs .flat :
@@ -234,7 +240,7 @@ def example_plot(ax, fontsize=12, hide_labels=False):
234
240
#
235
241
236
242
# %%
237
- # Padding and Spacing
243
+ # Padding and spacing
238
244
# ===================
239
245
#
240
246
# Padding between axes is controlled in the horizontal by *w_pad* and
@@ -274,7 +280,7 @@ def example_plot(ax, fontsize=12, hide_labels=False):
274
280
275
281
# %%
276
282
# GridSpecs also have optional *hspace* and *wspace* keyword arguments,
277
- # that will be used instead of the pads set by ``constrained_layout`` :
283
+ # that will be used instead of the pads set by *constrained layout* :
278
284
279
285
fig , axs = plt .subplots (2 , 2 , layout = "constrained" ,
280
286
gridspec_kw = {'wspace' : 0.3 , 'hspace' : 0.2 })
@@ -424,7 +430,7 @@ def example_plot(ax, fontsize=12, hide_labels=False):
424
430
425
431
# %%
426
432
# Rather than using subgridspecs, Matplotlib now provides `~.Figure.subfigures`
427
- # which also work with ``constrained_layout`` :
433
+ # which also work with *constrained layout* :
428
434
429
435
fig = plt .figure (layout = "constrained" )
430
436
sfigs = fig .subfigures (1 , 2 , width_ratios = [1 , 2 ])
@@ -448,7 +454,7 @@ def example_plot(ax, fontsize=12, hide_labels=False):
448
454
#
449
455
# There can be good reasons to manually set an Axes position. A manual call
450
456
# to `~.axes.Axes.set_position` will set the axes so constrained_layout has
451
- # no effect on it anymore. (Note that ``constrained_layout`` still leaves the
457
+ # no effect on it anymore. (Note that *constrained layout* still leaves the
452
458
# space for the axes that is moved).
453
459
454
460
fig , axs = plt .subplots (1 , 2 , layout = "constrained" )
@@ -461,7 +467,7 @@ def example_plot(ax, fontsize=12, hide_labels=False):
461
467
# Grids of fixed aspect-ratio Axes: "compressed" layout
462
468
# =====================================================
463
469
#
464
- # ``constrained_layout`` operates on the grid of "original" positions for
470
+ # *Constrained layout* operates on the grid of "original" positions for
465
471
# axes. However, when Axes have fixed aspect ratios, one side is usually made
466
472
# shorter, and leaves large gaps in the shortened direction. In the following,
467
473
# the Axes are square, but the figure quite wide so there is a horizontal gap:
@@ -485,17 +491,17 @@ def example_plot(ax, fontsize=12, hide_labels=False):
485
491
486
492
487
493
# %%
488
- # Manually turning off ``constrained_layout``
494
+ # Manually turning off *constrained layout*
489
495
# ===========================================
490
496
#
491
- # ``constrained_layout`` usually adjusts the axes positions on each draw
497
+ # *Constrained layout* usually adjusts the axes positions on each draw
492
498
# of the figure. If you want to get the spacing provided by
493
- # ``constrained_layout`` but not have it update, then do the initial
499
+ # *Constrained layout* but not have it update, then do the initial
494
500
# draw and then call ``fig.set_layout_engine(None)``.
495
501
# This is potentially useful for animations where the tick labels may
496
502
# change length.
497
503
#
498
- # Note that ``constrained_layout`` is turned off for ``ZOOM`` and ``PAN``
504
+ # Note that *Constrained layout* is turned off for ``ZOOM`` and ``PAN``
499
505
# GUI events for the backends that use the toolbar. This prevents the
500
506
# axes from changing position during zooming and panning.
501
507
#
@@ -506,11 +512,11 @@ def example_plot(ax, fontsize=12, hide_labels=False):
506
512
# Incompatible functions
507
513
# ----------------------
508
514
#
509
- # ``constrained_layout`` will work with `.pyplot.subplot`, but only if the
515
+ # *Constrained layout* will work with `.pyplot.subplot`, but only if the
510
516
# number of rows and columns is the same for each call.
511
517
# The reason is that each call to `.pyplot.subplot` will create a new
512
518
# `.GridSpec` instance if the geometry is not the same, and
513
- # ``constrained_layout`` . So the following works fine:
519
+ # *Constrained layout* . So the following works fine:
514
520
515
521
fig = plt .figure (layout = "constrained" )
516
522
@@ -557,10 +563,10 @@ def example_plot(ax, fontsize=12, hide_labels=False):
557
563
fig .suptitle ('subplot2grid' )
558
564
559
565
# %%
560
- # Other Caveats
566
+ # Other caveats
561
567
# -------------
562
568
#
563
- # * ``constrained_layout`` only considers ticklabels, axis labels, titles, and
569
+ # * *Constrained layout* only considers ticklabels, axis labels, titles, and
564
570
# legends. Thus, other artists may be clipped and also may overlap.
565
571
#
566
572
# * It assumes that the extra space needed for ticklabels, axis labels,
@@ -595,6 +601,8 @@ def example_plot(ax, fontsize=12, hide_labels=False):
595
601
# not require outside data or dependencies (other than numpy).
596
602
597
603
# %%
604
+ # .. _cl_notes_on_algorithm:
605
+ #
598
606
# Notes on the algorithm
599
607
# ======================
600
608
#
@@ -691,7 +699,7 @@ def example_plot(ax, fontsize=12, hide_labels=False):
691
699
# is a conscious decision of the algorithm, and leads to the case where
692
700
# the two right-hand axes have the same height, but it is not 1/2 the height
693
701
# of the left-hand axes. This is consistent with how ``gridspec`` works
694
- # without constrained layout.
702
+ # without * constrained layout* .
695
703
696
704
fig = plt .figure (layout = "constrained" )
697
705
gs = gridspec .GridSpec (2 , 2 , figure = fig )
0 commit comments