I’m having an issue getting some timestamps into a consistent format.
I have the timestamps: ‘00:00:02.285932’ ‘00:00:07’ ‘00:00:11.366717’ ‘00:00:11.367594’ In pandas from a CSV file. I would like the second line to be consistent with the others. ‘00:00:07.000000’
If I run: timestps.pd.to_datetime(timestps) over the timestps data I do get the format with all the decimals, but it adds a date, which I can’t seem to remove without losing the time format. Any help would be appreciated. Thanks