I have a dataframe, one column of which is filled with entries like this:
2017-03-01T09:30:00.436
2017-03-01T09:30:00.444
...
Is there a way to convert the entire column into datetime format?
So far I have tried using
str.replace('T',' ') over iterrows()
as well as slicing methods but neither seems to work. Any help will be greatly appreciated. Thanks!