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
Does not work, a np.datetime64 is required.
getml should in general support standard python library types such as datetime.datetime