I have data stored in a JSON file and am reading it in with Pandas. The format of the time is 'Jun 10, 2021, 01:05:30:565'
. I would like to present the time column with its match. However, python gives this error: Unknown string format:', 'Jun 10, 2021, 01:05:30:565 AM')
.
I used: DS [pd.to_datetime(day + ' ' + time)] = value
That line worked with other columns that have time : HH:MM: SS. but with milliseconds I'm unable to present what I want.