0
votes
1answer
139 views

How to convert from datetime.timedelta to numpy.timedetla64?

How to convert a variable from Python's datetime.timedelta to numpy.timedelta64?
1
vote
1answer
142 views

Get days property from numpy.ndarray of timedelta objects

I have a numpy.ndarray. The first two columns are dates of type datetime.datetime. I would like to find the difference in months (as a float) between the two where I define this as (difference in ...
2
votes
2answers
624 views

How can I make a python numpy arange of datetime

I have some input data, with timestamps in the input file in the form of hours from the date time specified in the filename. This is a bit useless, so I need to convert it to python datetime.datetime ...