fig = plt.figure()
ax = fig.gca()
ts.plot(ax=ax)
I know I can set xlim inside pandas plotting routine: ts.plot(xlim = ...)
, but how to change it after pandas plotting is done?
ax.set_xlim(( t0.toordinal(), t1.toordinal() )
works sometimes, but if pandas is formatting the x-axis as months from epoch, not days, this will fail.
Is there anyway to know how pandas has converted the dates to x-axis and then convert my xlim in the same way?