I'm new here and need help in understanding how i can work with timestamps to datetime objects that are used in pandas. I saved some data using websockets in a csv file and loaded that csv file into a pandas dataframe. In my timestamp column i'm getting contents like [2018-02-04T07:49:36.867Z, 2018-02-04T07:49:56.931Z and so on]
.
I have to manipulate the other data columns using the time data, like re-sampling (using pandas) over certain durations say 1 min, 3 min etc.
But I can't apply re-sampling as the date and time is not in correct format, like this [20180204 07:49:56.931, 20180204 07:49:56:931 and so on]
.
How to achieve this transformation in pandas/python. Is it just just simple first string manipulation that i just remove these unwanted characters and then apply the datetime transformation. Any help on how to proceed would be helpful.
I don't even know where to start as I have never come across this type of format.