I have a column in a Pandas data frame that has a date column but has datetime and date mixed in together as follows:
2020-05-20 00:00:00
2020-05-21 00:00:00
2020-05-22
2020-05-23
Is there any way to convert everything to a date format as follows:
2020-05-20
2020-05-21
2020-05-22
2020-05-23