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::contains
#7039 introduces a lists::contains API that we should plumb through to Python. The Python API we want is probably something like:
>>> s = cudf.Series([[1, 2, 3], [3, 4, 5], [4, 5, 6]]) >>> s.list.contains(4) # returns Series([False, True, True])
The text was updated successfully, but these errors were encountered:
@skirui-source please do not close issues until the pull request is merged. Generally using the fixes keyword is the preferred way of having pill requests automatically close issues: https://docs.github.com/en/github/managing-your-work-on-github/linking-a-pull-request-to-an-issue
fixes
Sorry, something went wrong.
skirui-source
Successfully merging a pull request may close this issue.
#7039 introduces a
lists::contains
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: