I am using pandas, and I have a column that contains datetime.
How can I represent this datetime string in a proper way?
I did
df['Date'] = pd.to_datetime(df['Date'], format='%m%y%d')
But it gave me the error:
ValueError: time data 'May 11, 2015' does not match format '%m%y%d' (match)
Does anybody know how to solve that? Or is there a way that I can do this date transformation in a better way?