注意
转到末尾下载完整示例代码。
使用约束布局调整轴大小#
约束布局尝试调整图形中子图的大小,以便轴对象和轴上的标签之间没有重叠。
有关更多详细信息,请参见约束布局指南和紧密布局指南(作为替代方案)。
import matplotlib.pyplot as plt
def example_plot(ax):
ax.plot([1, 2])
ax.set_xlabel('x-label', fontsize=12)
ax.set_ylabel('y-label', fontsize=12)
ax.set_title('Title', fontsize=14)
如果我们不使用约束布局,则标签会重叠轴
添加layout='constrained'
会自动调整。
下面是使用嵌套gridspecs的更复杂的示例。
fig = plt.figure(layout='constrained')
import matplotlib.gridspec as gridspec
gs0 = gridspec.GridSpec(1, 2, figure=fig)
gs1 = gridspec.GridSpecFromSubplotSpec(3, 1, subplot_spec=gs0[0])
for n in range(3):
ax = fig.add_subplot(gs1[n])
example_plot(ax)
gs2 = gridspec.GridSpecFromSubplotSpec(2, 1, subplot_spec=gs0[1])
for n in range(2):
ax = fig.add_subplot(gs2[n])
example_plot(ax)
plt.show()
脚本的总运行时间:(0 分 5.127 秒)