Skip to content
Advertisement

Transforming an inconsistently formated Date Column into a consistently formatted Datetime column [duplicate]

I have a Python DataFrame with a datetime column that has inconsistent format, and would like it to be all one format. The DataFarme contains 199622 rows, so this is not an exhaustive sample:

Example of DataFrame Column as an object type:

JavaScript

The desired transformed output would be a DateFrame with a date type column formatted:

JavaScript

Is it possible to create a function that does this transformation for both sets of formats in a single column?

Advertisement

Answer

This should work.

JavaScript
User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement