I have a Dataframe with 2 columns that are float64 objects. I am trying to convert these to dates.
col1, col2
43835.0, 0.145833
43835.0, 0.166667
Expected output:
col1, col2
05/01/2020,3:30:00 AM
05/01/2020, 4:00:00 AM
When I try pd.to_datetime(df['col1'])
it convert the values to 1970-01-01 00:00:00.000043835
and 1970-01-01
respectively