pandas out of bounds nanosecond timestamp after offset rollforward plus adding a month offset
Since pandas represents timestamps in nanosecond resolution, the timespan that can be represented using a 64-bit integer is limited to approximately 584 years In [54]: pd.Timestamp.min Out[54]: Timestamp(‘1677-09-22 00:12:43.145225’) In [55]: pd.Timestamp.max Out[55]: Timestamp(‘2262-04-11 23:47:16.854775807’) And your value is out of this range 2262-05-01 00:00:00 and hence the outofbounds error Straight out of: https://pandas.pydata.org/pandas-docs/stable/user_guide/timeseries.html#timestamp-limitations Workaround: … Read more