Open mroeschke opened 1 year ago
Perhaps related: https://github.com/rapidsai/cudf/pull/12882
Resampling is somewhat different, I think. One possible implementation might be to produce the grouped dataframe and then call DataFrame.resample
on the whole thing (since I think that the resampling commutes with grouping)
Is your feature request related to a problem? Please describe. While working on a pandas to cudf workflow comparison, I noticed that
groupby(...).resample(...)
has not been implemented in cudf yetDescribe the solution you'd like
Describe alternatives you've considered Can for loop over the groups of
cu_df.groupby("group")
and callresample
individually.Additional context https://pandas.pydata.org/docs/reference/api/pandas.core.groupby.DataFrameGroupBy.resample.html