我想请教一下如何在由pandas df.hist()命令生成的直方图集合的顶部显示一个标题。例如,在下面的代码生成的直方图图块中,我想在图的顶部放置一个一般的标题(例如,"我的直方图集合")。
data = DataFrame(np.random.randn(500).reshape(100,5), columns=list('abcde'))
axes = data.hist(sharey=True, sharex=True)
I've tried using the titlehist命令中的关键字(即title='我的柱状图集合'),但这并不奏效。
The following code does在ipython笔记本中)通过向其中一个轴添加文本来工作,但有点笨拙。
axes[0,1].text(0.5, 1.4,'My collection of histogram plots', horizontalalignment='center',
verticalalignment='center', transform=axes[0,1].transAxes)
有更好的方法吗?