I have a variable ['date_hiring'] in Googlespeedsheet in format like
16.01.2016
I import it in Python, the variable has an object type. I try to convert to datetime
from datetime import datetime
data['date_hiring'] = pd.to_datetime(data['date_hiring'])
and i get
OutOfBoundsDatetime: Out of bounds nanosecond timestamp: 16-01-06 00:00:00
i know from this pandas out of bounds nanosecond timestamp after offset rollforward plus adding a month offset that
Since pandas represents timestamps in nanosecond resolution, the timespan that can be represented using a 64-bit integer is limited to approximately 584 years
but in original data in the Googlespeedsheet i have no data like '16.01.06'
Just like '16.06.2006'
So the problem is in converting
How to improve it?