Skip to content

Tag: timestamp

Creating date range pairs in pandas

I have two datetimes between which I would like to generate regular intervals of 4 hours (excluding the last interval, which can be less than 4 hours if there are less than 4 hours between the previous timestamp and end). I am stuck on interval generation with pandas.date_range, which only returns the end tim…

Resampling timestamps in a CSV

I have a CSV file that stores data from different smartphone sensors. The timestamps are elapsed nanoseconds since the program to record the data was started. Short example: The time steps between the timestamps are not equal, but I would like them to be. My question is how to achieve this? I was thinking abo…