改变Matplotlib子图大小/位置
要在创建轴之后改变子图大小或位置,我们可以执行以下步骤-
- 使用 figure() 方法创建一个新图或激活现有图。
- 使用 add_subplot() 方法将 ~.axes.Axes 添加到图中作为子图布局的一部分。
- 使用 GridSpec() 类指定图中子图的网格布局。
- 设置网格规范的位置。
- 设置 subplotspec 实例。
- 使用 add_subplot() 方法将 ~.axes.Axes 添加到图中作为子图布局的一部分,并使用网格规范实例。
- 调整子图之间和周围的间距。
- 使用 show() 方法显示图形。
样例
from matplotlib import pyplot as plt
from matplotlib import gridspec as gridspec
plt.rcParams["figure.figsize"] = [7.00, 3.50]
plt.rcParams["figure.autolayout"] = True
fig = plt.figure()
ax = fig.add_subplot(111)
gs = gridspec.GridSpec(3, 1)
ax.set_position(gs[0:2].get_position(fig))
ax.set_subplotspec(gs[0:2])
fig.add_subplot(gs[2])
fig.tight_layout()
plt.show()