We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
lists::drop_list_duplicates
#7528 introduces a lists::drop_list_duplicates API that we should plumb through to Python. The Python API we want is probably something like:
>>> s = cudf.Series([[4, 2, 2, 9], [8, 8, 2], [2, 1]]) >>> s.list.unique() # returns Series([[4, 2, 9], [8, 2], [2, 1]])
The text was updated successfully, but these errors were encountered:
Assigned you @skirui-source since it should be similar to the other list APIs you're plumbing through, thanks!
Sorry, something went wrong.
Closing as duplicate of #7414
skirui-source
No branches or pull requests
#7528 introduces a
lists::drop_list_duplicates
API that we should plumb through to Python. The Python API we want is probably something like:The text was updated successfully, but these errors were encountered: