My dataframe's date
column looks like this and contains integers:
I want to convert the date
column (now containing dtype integers) into %Y%m%d
format so that the first row looks like 2002-01-01
.
After using the following code:
party_dataset['date'] = party_dataset['date'].apply(lambda x: pd.to_datetime(x))
the column values start to like this 1970-01-01 00:00:00.000002002, 1970-01-01 00:00:00.000002003
... (the actual year being sent to the very end).
Can somebody please suggest an example solution code?