I have one plot in the format:
df.plot()
The other one is in the format:
fig,ax=plt.subplots()
ax.plot_date(t,y,'b-')
I cannot convert the first plot into the standard matplotlib plot because it is resampled from a pandas timeseries.
How do I overlay the two plots?