Note
Click here to download the full example code
plt.subplots
¶pyplot.subplots
creates a figure and a grid of subplots with a single call,
while providing reasonable control over how the individual plots are created.
For more advanced use cases you can use GridSpec
for a more general subplot
layout or Figure.add_subplot
for adding subplots at arbitrary locations
within the figure.
subplots()
without arguments returns a Figure
and a single
Axes
.
This is actually the simplest and recommended way of creating a single Figure and Axes.
Out:
Text(0.5, 1.0, 'A single plot')
The first two optional arguments of pyplot.subplots
define the number of
rows and columns of the subplot grid.
When stacking in one direction only, the returned axs
is a 1D numpy array
containing the list of created Axes.
Out:
[<matplotlib.lines.Line2D object at 0x7f188b46c4c0>]
If you are creating just a few Axes, it's handy to unpack them immediately to
dedicated variables for each Axes. That way, we can use ax1
instead of
the more verbose axs[0]
.
Out:
[<matplotlib.lines.Line2D object at 0x7f188b6b1070>]
To obtain side-by-side subplots, pass parameters 1, 2
for one row and two
columns.
Out:
[<matplotlib.lines.Line2D object at 0x7f188baa86d0>]
When stacking in two directions, the returned axs
is a 2D numpy array.
If you have to set parameters for each subplot it's handy to iterate over
all subplots in a 2D grid using for ax in axs.flat:
.
fig, axs = plt.subplots(2, 2)
axs[0, 0].plot(x, y)
axs[0, 0].set_title('Axis [0,0]')
axs[0, 1].plot(x, y, 'tab:orange')
axs[0, 1].set_title('Axis [0,1]')
axs[1, 0].plot(x, -y, 'tab:green')
axs[1, 0].set_title('Axis [1,0]')
axs[1, 1].plot(x, -y, 'tab:red')
axs[1, 1].set_title('Axis [1,1]')
for ax in axs.flat:
ax.set(xlabel='x-label', ylabel='y-label')
# Hide x labels and tick labels for top plots and y ticks for right plots.
for ax in axs.flat:
ax.label_outer()
You can use tuple-unpacking also in 2D to assign all subplots to dedicated variables:
By default, each Axes is scaled individually. Thus, if the ranges are different the tick values of the subplots do not align.
Out:
[<matplotlib.lines.Line2D object at 0x7f188ba4f370>]
You can use sharex or sharey to align the horizontal or vertical axis.
Out:
[<matplotlib.lines.Line2D object at 0x7f188ae559a0>]
Setting sharex or sharey to True
enables global sharing across the
whole grid, i.e. also the y-axes of vertically stacked subplots have the
same scale when using sharey=True
.
Out:
[<matplotlib.lines.Line2D object at 0x7f188b67ad60>]
For subplots that are sharing axes one set of tick labels is enough. Tick labels of inner Axes are automatically removed by sharex and sharey. Still there remains an unused empty space between the subplots.
The parameter gridspec_kw of pyplot.subplots
controls the grid
properties (see also GridSpec
). For example, we can reduce the height
between vertical subplots using gridspec_kw={'hspace': 0}
.
label_outer
is a handy method to remove labels and ticks from subplots
that are not at the edge of the grid.
Apart from True
and False
, both sharex and sharey accept the
values 'row' and 'col' to share the values only per row or column.
fig, axs = plt.subplots(2, 2, sharex='col', sharey='row',
gridspec_kw={'hspace': 0, 'wspace': 0})
(ax1, ax2), (ax3, ax4) = axs
fig.suptitle('Sharing x per column, y per row')
ax1.plot(x, y)
ax2.plot(x, y**2, 'tab:orange')
ax3.plot(x + 1, -y, 'tab:green')
ax4.plot(x + 2, -y**2, 'tab:red')
for ax in axs.flat:
ax.label_outer()
The parameter subplot_kw of pyplot.subplots
controls the subplot
properties (see also Figure.add_subplot
). In particular, this can be used
to create a grid of polar Axes.
Total running time of the script: ( 0 minutes 1.804 seconds)
Keywords: matplotlib code example, codex, python plot, pyplot Gallery generated by Sphinx-Gallery