I have a dataframe "df" in Python where one column is the date represented in isoformat "2017-01-01T12:30:59.000000".
df['date']
Out[1]:
0 2020-02-24T18:00:00
1 2020-02-24T18:00:00
2 2020-02-24T18:00:00
Is there a single command to replace the entire column in simple date like ?
df['date']
Out[1]:
0 2020-02-24
1 2020-02-24
2 2020-02-24