I have a pandas DataFrame with a datetime column containing two different formats. One format is “2013-03-07 05:29:47.890” Second format is unix-timestamp “1527051855673000000”
How do i convert these two datetimes into one datetime format without affecting the other.
Edit: problem is any function/processing I apply on one format will probably result in error for the other format. If I could convert one format into the other I could apply same processing to the whole column.