Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 092fb09 + 7989ed9 commit 0af2917Copy full SHA for 0af2917
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