[FEA] Add support for `cudf.DataFrame.aggregate`
- Dominant language
- C++
- Stars
- 9.8k
- Forks
- 1.1k
- Avg merge
- 3d 6m
- Merged PRs (30d)
- 278
Description
**Is your feature request related to a problem? Please describe.**
We support `cudf.DataFrame.agg` but not `cudf.DataFrame.aggregate`.
```python
df = cudf.from_pandas(
pd.DataFrame(
[
[1, 2, 3],
[4, 5, 6],
[7, 8, 9]
],
columns=['A', 'B', 'C']
)
)
df.aggregate(['sum', 'min'])
```
**Describe the solution you'd like**
A clear and concise description of what you want to happen.
**Describe alternatives you've considered**
A clear and concise description of any alternative solutions or features you've considered.
**Additional context**
Add any other context, code examples, or references to existing implementations about the feature request here.
Contributor guide
Assessment
This issue has not been assessed yet.