I have bunch of csv files with different time/date stamps of different formats (I do not know ahead of time the format).
Few of the formats are:
09/30/2013 12:00:00 AM
12:00:00 AM 09/30/2013
09/30/2013
12:00:00 AM
12AM 2013
etc
When I read csv file using pandas it simply assigns "object
" time to all of these columns of different date time formats.
Is there any way to identify datetime format for various formats and convert those into pandas-friendly format so I can set pandas column type to datetime format instead of object?