Python子图为公共轴标签留出空间

时间:2012-12-31 08:41:23

标签: python matplotlib axis-labels subplot

我有以下代码,在一个图中生成四个子图:

f = figure( figsize=(7,7) )
f.add_axes([0.2,0.175,0.75,0.75])
f.subplots_adjust(left=0.15)
f.clf()
ax = f.add_subplot(111)
ax1 = f.add_subplot(221)
ax2 = f.add_subplot(222)
ax3 = f.add_subplot(223)
ax4 = f.add_subplot(224)
ax.xaxis.set_major_formatter( NullFormatter() )
ax.yaxis.set_major_formatter( NullFormatter() )
ax2.xaxis.set_major_formatter( NullFormatter() )
ax2.yaxis.set_major_formatter( NullFormatter() )
ax1.xaxis.set_major_formatter( NullFormatter() )
ax4.yaxis.set_major_formatter( NullFormatter() )
f.subplots_adjust(wspace=0,hspace=0)

ax1.plot(tbins[0:24], mean_yszth1, color='r', label='mean', marker='.', lw=3)
ax2.plot(tbins[0:24], mean_ysz1, color='r', label='mean', marker='.', lw=3)
ax3.plot(tbins[0:24], mean_yszth2, color='r', label='mean', marker='.', lw=3)
ax4.plot(tbins[0:24], mean_ysz2, color='r', label='mean', marker='.', lw=3)

ax1.set_xlim(0,12)
ax1.set_ylim(-0.5,0.5)
ax2.set_xlim(0,12)
ax2.set_ylim(-0.5,0.5)
ax3.set_xlim(0,12)
ax3.set_ylim(-0.5,0.5)
ax4.set_xlim(0,12)
ax4.set_ylim(-0.5,0.5)
ax.set_xlabel(r"$\mathrm{Time\ since\ last\ merger\ (Gyr)}$")
ax.set_ylabel(r"$\mathrm{\Delta Y_{SZ}/Y_{SZ}}$")

结果如下:

如您所见,轴标签与刻度重叠。我想将公共轴标签远离轴稍微移动一下。我无法弄清楚如何最好地做到这一点。

1 个答案:

答案 0 :(得分:3)

使用labelpadset_ylabel方法的set_xlabel参数:

Definition: ax.set_ylabel(self, ylabel, fontdict=None, labelpad=None, **kwargs)
Docstring:
Call signature::

  set_ylabel(ylabel, fontdict=None, labelpad=None, **kwargs)

Set the label for the yaxis

*labelpad* is the spacing in points between the label and the y-axis

这是我将标签板设置为50(x)和60(y)所得到的。当使用默认配置时,我必须手动修改图形边距,因为标签在图框外。

enter image description here

修改
从您的评论看来,您可能正在使用非常旧版本的matplotlib。 Labelpad参数已经在许多版本的matplotlib中出现了,但设置它的方式可能有所不同(我不确定)。
在网络上,我发现some comments指出了这种用法:

ax.xaxis.LABELPAD = 8  # default is 5

我也见过它:

ax.xaxis.labelpad = 8