标签: python matplotlib pandas
我有一个格式的图:
df.plot()
另一种格式为:
fig,ax=plt.subplots() ax.plot_date(t,y,'b-')
我无法将第一张图转换为标准的matplotlib图,因为它是从熊猫时间序列中重新采样的。
如何覆盖这两个图?
答案 0 :(得分:4)
试试df.plot(ax=ax)。这会导致数据框对象在提供的轴上绘制。
df.plot(ax=ax)