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
All aggregations should ignore missing values, currently the bitwise_(and/or/xor) aggregations do not:
bitwise_(and/or/xor)
>>> pl.Series([1, 2, None]).sum() 3 >>> pl.Series([1, 2, None]).bitwise_or() shape: (1,) Series: '' [i64] [ null ]
The text was updated successfully, but these errors were encountered:
@coastalwhite can you take this one. (Once better)
Sorry, something went wrong.
orlp
Successfully merging a pull request may close this issue.
All aggregations should ignore missing values, currently the
bitwise_(and/or/xor)
aggregations do not:The text was updated successfully, but these errors were encountered: