Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Open
joro-enbw opened this issue Nov 28, 2023 · 0 comments
Open

Comments

@joro-enbw
Copy link

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant