-
-
Notifications
You must be signed in to change notification settings - Fork 2k
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
Implement bitwise aggregation #5009
Comments
👍🏼 this feature would be really useful 🙏🏼 |
Another potentially helpful function would be |
This feature is welcome. We can start with |
This was implemented by #18994. |
Problem Description
Implement "bitwise and" and "bitwise or" aggregation for expressions and series. This would be similar to the bitwise reduction in numpy with
np.bitwise_or.reduce(arr)
. This is very helpful for any data measured about bits themselves or packed into bits. "bitwise xor" might also be something to consider.Potentially also allowing for bit shifts with expressions would be very helpful as well.
The text was updated successfully, but these errors were encountered: