你如何在matplotlib中绘制颠倒的直方图?

时间:2018-04-25 21:32:29

标签: matplotlib histogram

您可以在matplotlib中绘制直方图,使其显示为倒置,即直方图的底部沿顶轴,并且它会挂起"下?或者,如果使用orientation='horizontal'进行绘图,以便直方图的底部位于右侧轴上?

1 个答案:

答案 0 :(得分:1)

是的,请使用invert_yaxis

df = pd.DataFrame({'a':[1,2,3,1,2,2,2],
             'b':[1,1,1,3,2,2,2]})
ax = df.plot.hist()
ax.invert_yaxis()

输出:

enter image description here