标签: python pandas
你会认为这是谷歌能够,但我还没有找到任何东西。
答案 0 :(得分:2)
pandas'plot函数使用matplotlib,因此您可以使用matplotlib函数set_xlabel和set_ylabel
pandas
plot
matplotlib
set_xlabel
set_ylabel
plot = df.plot(x="Some Data",y="Other Data",kind="hist") plot.set_xlabel("X") plot.set_ylabel("Y")