gps nt_date
4002 20-Dec-16
4002 20-Dec-16
C-4 30-Jan-17
Y21-21 17-Nov-16
49a 22-Dec-16
In the dataframe above, how can I convert nt_date column to pandas datetime? I am using this but it does not work:
pd.to_datetime(df['nt_date'], format='%d-%m-%Y')
How to fix this?