-
Notifications
You must be signed in to change notification settings - Fork 22
Add cumsum #251
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
Add cumsum #251
Conversation
dcherian
left a comment
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.
Exciting to see!
tests/test_core.py
Outdated
| a = np.array([3, 4, 1, 3, 9, 9, 6, 7, 7, 0, 8, 2, 1, 8, 9, 8]) | ||
| b = npg.aggregate(group_idx, a, func="cumsum") | ||
|
|
||
| bb = groupby_reduce(a, group_idx, func="cumsum", engine="numpy")[0] |
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.
Let's add a groupby_accumulate(a, group_idx, func="sum", engine="numpy) that only returns a single array.
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.
I'm not a fan that groupby_reduce and groupby_accumulate wont have the same typing though.
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.
They are very different operations so they have to be. For e.g. method="map-reduce" isn't applicable. fill_value doesn't make any sense I don't think (an initial value does)
Co-authored-by: Deepak Cherian <[email protected]>
No description provided.