You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We currently support reduction-based aggregations in both whole-frame and groupby contexts. However, we have not yet implemented scan-based aggregations.
We should implement these. The whole-frame case is probably quite straightforward. For the grouped context, we probably need some libcudf work (see #15541)
The text was updated successfully, but these errors were encountered:
contributes to #16478
This implements "cum_min", "cum_max", "cum_prod", "cum_sum"
"cum_count" is not implemented for now, since there's no exact libcudf match (I imagine the non-grouped case is also not used that much but haven't checked).
I suppose we could implement it by creating a column of 1s and copying the null mask over, and doing a cum_sum on that.
Let me know if you want to try that.
Authors:
- Thomas Li (https://github.com/lithomas1)
Approvers:
- https://github.com/brandon-b-miller
URL: #16509
We currently support reduction-based aggregations in both whole-frame and groupby contexts. However, we have not yet implemented scan-based aggregations.
We should implement these. The whole-frame case is probably quite straightforward. For the grouped context, we probably need some libcudf work (see #15541)
The text was updated successfully, but these errors were encountered: