I have a DataFrame with column named date. How can we convert/parse the \'date\' column to a DateTime object?
DataFrame
date
DateTime
I loaded the dat
You probably need apply, so something like:
apply
df['date'] = df['date'].apply(dateutil.parser.parse)
Without an example of the column I can't guarantee this will work, but something in that direction should help you to carry on.