-
Notifications
You must be signed in to change notification settings - Fork 903
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
[FEA] Support datetime64[D] #16803
Comments
Thanks for the request. Just to understand your use case, do you regularly work with dates before 2.9e11 BC or after 2.9e11 AD? For reference, pandas 2.0 also does not support |
Thanks @mroeschke. I got around my problem pretty easily by converting my string dates formatted as "yyyymmdd" into numbers for comparison. That's all I wanted: to compare my dates. I just thought that it'd enable more options for the user since cudf's supported data format becomes more granular. |
Not necessarily; one could use cudf independently of pandas and cudf could support day resolution datetime type. But a day resolution type is functionally equivalent to other resolutions (i.e. "compare your dates" will work with any resolution); the only difference is that day resolution can represent a wider range of dates. So for the team to consider implementing this feature, there needs to be a demand/use case to store dates beyond |
I see. Thank you for your effort and promptly feedback. I'll close this request. |
Describe the solution you'd like
please let cudf to support datetime64[D].
Describe alternatives you've considered
I had to convert my datetime to integer for filter and etc.
The text was updated successfully, but these errors were encountered: