shaoheshaohe 发表于 2019-4-21 21:10:15

【matplotlib】Tight Layout guide



直接上代码:

plt.close('all')
fig = plt.figure()
ax1 = plt.subplot(221)
ax2 = plt.subplot(223)
ax3 = plt.subplot(122)
example_plot(ax1)
example_plot(ax2)
example_plot(ax3)
plt.tight_layout()

def example_plot(ax, fontsize=12):   
ax.plot([1, 2])   
ax.locator_params(nbins=3)   
ax.set_xlabel('x-label', fontsize=fontsize)   
ax.set_ylabel('y-label', fontsize=fontsize)   
ax.set_title('Title', fontsize=fontsize)
页: [1]
查看完整版本: 【matplotlib】Tight Layout guide