Skip to content

Commit

Permalink
Doc: fixing RT03 errors for pandas.DataFrame.expanding (pandas-dev#57615
Browse files Browse the repository at this point in the history
)

fixing RT03 errors for pandas.DataFrame.expanding
  • Loading branch information
jordan-d-murphy authored and pmhatre1 committed May 7, 2024
1 parent 7b45468 commit f7f75bb
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions pandas/core/window/expanding.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,9 @@ class Expanding(RollingAndExpandingMixin):
"""
Provide expanding window calculations.
An expanding window yields the value of an aggregation statistic with all the data
available up to that point in time.
Parameters
----------
min_periods : int, default 1
Expand All @@ -69,6 +72,8 @@ class Expanding(RollingAndExpandingMixin):
Returns
-------
pandas.api.typing.Expanding
An instance of Expanding for further expanding window calculations,
e.g. using the ``sum`` method.
See Also
--------
Expand Down

0 comments on commit f7f75bb

Please sign in to comment.