如何在同一水平线上设置两个轴的原点

时间:2018-07-04 22:34:52

标签: python matplotlib plot

我无法解决我的问题。我正在使用matplotlib,并且正在绘制直方图和理论pdf,但无法在同一水平上将两个y轴设置为0值。 这是我的代码和得到的情节:

fig, ax1 = plt.subplots()
ax1.plot(x, pdf_g, label="Norm") 
ax2 = ax1.twinx()
ax2.hist(df['col'])
plt.show()

enter image description here

0 个答案:

没有答案