标签: 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()