Skip to content

Commit

Permalink
Align groupby APIs with pandas 2.x (#16403)
Browse files Browse the repository at this point in the history
The following breaking APIs are affected:

* `apply`
* `transform`
* `describe`

The rest of the APIs are non-breaking and generally will raise a `NotImplementedError`

Authors:
  - Matthew Roeschke (https://github.com/mroeschke)

Approvers:
  - GALI PREM SAGAR (https://github.com/galipremsagar)

URL: #16403
  • Loading branch information
mroeschke authored Jul 29, 2024
1 parent 18c1465 commit 58f4724
Show file tree
Hide file tree
Showing 4 changed files with 514 additions and 149 deletions.
3 changes: 2 additions & 1 deletion docs/cudf/source/user_guide/api_docs/groupby.rst
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,6 @@ Computations / descriptive stats
GroupBy.std
GroupBy.sum
GroupBy.var
GroupBy.corr
GroupBy.cov

The following methods are available in both ``SeriesGroupBy`` and
Expand All @@ -81,6 +80,7 @@ application to columns of a specific data type.
:toctree: api/

DataFrameGroupBy.bfill
DataFrameGroupBy.corr
DataFrameGroupBy.count
DataFrameGroupBy.cumcount
DataFrameGroupBy.cummax
Expand All @@ -102,5 +102,6 @@ The following methods are available only for ``SeriesGroupBy`` objects.
.. autosummary::
:toctree: api/

SeriesGroupBy.corr
SeriesGroupBy.nunique
SeriesGroupBy.unique
Loading

0 comments on commit 58f4724

Please sign in to comment.