Reputation: 13
I'm trying to read a column with date and time from csv file and wanted to plot the frequencies of datas per day. I don't actually know how to read them though.
Upvotes: 1
Views: 232
Reputation: 631
You'll need to define your initial column as datetime first.
df['created'] = pd.to_datetime(df['created'])
Upvotes: 1