我正在寻找有关如何在熊猫df.hist()命令生成的直方图图的顶部显示标题的建议。例如,在下面的代码生成的直方图图形块中,我想在图形的顶部放置一个常规标题(例如“我的直方图集合”):
data = DataFrame(np.random.randn(500).reshape(100,5), columns=list('abcde')) axes = data.hist(sharey=True, sharex=True)
我试过在hist命令中使用 title 关键字(即title =’我的直方图集合)’,但这没用。
以下代码通过在其中一个轴上添加文本来 实现 工作(在ipython笔记本中),但有点麻烦。
axes[0,1].text(0.5, 1.4,'My collection of histogram plots', horizontalalignment='center', verticalalignment='center', transform=axes[0,1].transAxes)
有没有更好的办法?
您可以使用suptitle():
suptitle()
import pylab as pl from pandas import * data = DataFrame(np.random.randn(500).reshape(100,5), columns=list('abcde')) axes = data.hist(sharey=True, sharex=True) pl.suptitle("This is Figure title")