标题和情节matplotlib之间的巨大空间

时间:2016-09-05 12:58:39

标签: python matplotlib

我对matplotlib的问题产生了一个离标题很远的情节(图表)。我的代码是:

df = pandas.read_csv(csvpath, delimiter=',', 
                     index_col=0, 
                     parse_dates=[0], dayfirst=True, 
                     names=['Date','test1'])

df.plot(subplots=True, marker='.',markersize=8, title ="test", fontsize = 10, color=['b','g','g'], figsize=(8, 22))

imagepath = 'capture.png'

plt.savefig(imagepath)

生成的图表示例如下:

enter image description here

知道为什么会这样吗?非常感谢。

1 个答案:

答案 0 :(得分:3)

您可以通过从figure的数组中返回的3个axis对象中的一个抓取df.plot对象来调整标题位置。使用fig.tight_layout删除额外的空格,但一个已知的问题是,它还将图标题设置在顶部图中。但是,您可以使用下面的最后一行来解决这个问题。

ax = df.plot(subplots=True, marker='.', markersize=8, 
             title ="test", fontsize = 10, color=['b','g','g'], 
             figsize=(8, 22))[0] 
fig = ax.get_figure()
fig.tight_layout()
fig.subplots_adjust(top=0.95)