Datetime Series #322
-
Hi! i've been playing around with the library and i cant find the way to represent my datetime series, i've tried with several type of datetime object but none work. So basically the question is, can i work with this type of date to create a FDataGrid? TypeError: unsupported operand type(s) for +: 'datetime.datetime' and 'float' thanks again! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
I have to say that I have never explicitly added support for datetimes, just floating point arrays. That said, numpy recently added support for dates using its |
Beta Was this translation helpful? Give feedback.
I have to say that I have never explicitly added support for datetimes, just floating point arrays. That said, numpy recently added support for dates using its
datetime64
dtype (https://numpy.org/doc/stable/reference/arrays.datetime.html), so MAYBE, that could work, or at least we could try to add support for this type.