如何为熊猫直方图设置x和y轴标签?

时间:2017-02-22 11:54:14

标签: python pandas

你会认为这是谷歌能够,但我还没有找到任何东西。

1 个答案:

答案 0 :(得分:2)

pandas'plot函数使用matplotlib,因此您可以使用matplotlib函数set_xlabelset_ylabel

plot = df.plot(x="Some Data",y="Other Data",kind="hist")
plot.set_xlabel("X")
plot.set_ylabel("Y")