We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 867c3dd commit 7989ed9Copy full SHA for 7989ed9
1 file changed
examples/subplots_axes_and_figures/gridspec_and_subplots.py
@@ -8,8 +8,9 @@
8
and then remove the covered axes and fill the gap with a new bigger axes.
9
Here we create a layout with the bottom two axes in the last column combined.
10
11
-See: :doc:`/tutorials/intermediate/gridspec`
+See also :doc:`/tutorials/intermediate/gridspec`.
12
"""
13
+
14
import matplotlib.pyplot as plt
15
16
fig, axs = plt.subplots(ncols=3, nrows=3)
@@ -22,3 +23,5 @@
22
23
xycoords='axes fraction', va='center')
24
25
fig.tight_layout()
26
27
+plt.show()
0 commit comments