无法在python中的整个条形图上绘制水平线

时间:2019-12-22 09:51:05

标签: python matplotlib data-visualization

我正在尝试在matplotlib中的条形图上绘制阈值线

fig4,ax4 = plt.subplots()
ax4.bar(X_45,Y_45,edgecolor = 'k')
ax4.hlines(four_half,-1,len(X_45), color = 'r')
for label in ax4.xaxis.get_ticklabels():
    label.set_rotation(90)
plt.show() 

four_half只是阈值数 X_45是熊猫列的列表

这是我得到的: enter image description here

我如何使阈值线从头到尾不像我得到的线那样“浮动”?

谢谢!

0 个答案:

没有答案