Skip to content

Commit

Permalink
docs(python): Add deprecation message in groupby docs (#11121)
Browse files Browse the repository at this point in the history
  • Loading branch information
stinodego authored Sep 14, 2023
1 parent 78742ff commit cd9969c
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions py-polars/polars/dataframe/frame.py
Original file line number Diff line number Diff line change
Expand Up @@ -9768,7 +9768,8 @@ def groupby(
"""
Start a group by operation.
Alias for :func:`DataFrame.group_by`.
.. deprecated:: 0.19.0
This method has been renamed to :func:`DataFrame.group_by`.
Parameters
----------
Expand Down Expand Up @@ -9809,7 +9810,8 @@ def groupby_rolling(
"""
Create rolling groups based on a time, Int32, or Int64 column.
Alias for :func:`DataFrame.group_by_rolling`.
.. deprecated:: 0.19.0
This method has been renamed to :func:`DataFrame.group_by_rolling`.
Parameters
----------
Expand Down Expand Up @@ -9865,7 +9867,8 @@ def groupby_dynamic(
"""
Group based on a time value (or index value of type Int32, Int64).
Alias for :func:`DataFrame.group_by_rolling`.
.. deprecated:: 0.19.0
This method has been renamed to :func:`DataFrame.group_by_dynamic`.
Parameters
----------
Expand Down

0 comments on commit cd9969c

Please sign in to comment.