我对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)
生成的图表示例如下:
知道为什么会这样吗?非常感谢。
答案 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)