getml / getml-community

Fast, high-quality forecasts on relational and multivariate time-series data powered by new feature learning algorithms and automated ML.
https://getml.com
Other
94 stars 9 forks source link

Support datetime.datetime (in general support standard lib types) #4

Open joro-enbw opened 10 months ago

joro-enbw commented 10 months ago
now = datetime.datetime.now()
table[ table["date"]< now]

Does not work, a np.datetime64 is required.

now = datetime.datetime.now()
table[ table["date"]< np.datetime64(now)]

getml should in general support standard python library types such as datetime.datetime