Matplotlib中y = 0处的暗轴线

时间:2014-09-17 19:02:56

标签: python matplotlib

这给了我主要的网格线,如下所示。

如何为 y = 0

获得一条暗轴线?

fig, ax1 = subplots(figsize=(3,6))
ax1.yaxis.grid(True, linestyle='-', which='major', color='grey', alpha=0.5)

bound = 20
ylim([-bound,bound])
boxplot(data)

show()

box and whisker plot

1 个答案:

答案 0 :(得分:3)

您需要致电axhline

axhline(0, color='black')

enter image description here