I have a column of timestamps
in seconds (since midnight) with nanosecond precisions like 34200.934549345, 34205.735545344
, and so on in a DataFrame df
.
These timestamps
come from the same day 2011-01-10
.
How can I convert these seconds with nanosecond precision in the DateTime64
format of numpy
?
I would like to have these entries in my df
2011-01-10 9:30:00.934549345
2011-01-10 9:30:05.735545344
I need to do the exact operation like in this example under SOLUTION of the asked question.
Is it possible?