DSC 201: Data Analysis & Visualization

The pandas date offsets can also be used with datetime or Timestamp objects: In [103]: from pandas.tseries.offsets import Day, MonthEnd In [104]: now = datetime(2011, 11, 17) In [105]: now + 3 * Day() Out[105]: Timestamp('2011-11-20 00:00:00') If you add an anchored offset like MonthEnd, the first increment will roll forward a date ................
................