-
Notifications
You must be signed in to change notification settings - Fork 908
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
Deprecate Groupby.collect
#15808
Deprecate Groupby.collect
#15808
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks @galipremsagar
Good to know that agg(list)
is now available in cudf. We will need to make changes to the new (dask-expr) API to deprecate "collect".
@galipremsagar - Just pushed a few changes that will hopefully get legacy and expr APIs both working. |
Thanks @rjzamora !! |
/merge |
Description
After we made our groupby fail more aggressively for unsupported types in #15712,
Groupby.collect
started to fail on string column, where this isn't a supported aggregation on string column in pandas and this method doesn't exist in pandas Groupby, hence this PR suggest the alternative equivalent and deprecates the API to be removed in next release.Checklist