Skip to content

Commit f7f75bb

Browse files
jordan-d-murphypmhatre1
authored andcommitted
Doc: fixing RT03 errors for pandas.DataFrame.expanding (pandas-dev#57615)
fixing RT03 errors for pandas.DataFrame.expanding
1 parent 7b45468 commit f7f75bb

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

pandas/core/window/expanding.py

+5
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,9 @@ class Expanding(RollingAndExpandingMixin):
5151
"""
5252
Provide expanding window calculations.
5353
54+
An expanding window yields the value of an aggregation statistic with all the data
55+
available up to that point in time.
56+
5457
Parameters
5558
----------
5659
min_periods : int, default 1
@@ -69,6 +72,8 @@ class Expanding(RollingAndExpandingMixin):
6972
Returns
7073
-------
7174
pandas.api.typing.Expanding
75+
An instance of Expanding for further expanding window calculations,
76+
e.g. using the ``sum`` method.
7277
7378
See Also
7479
--------

0 commit comments

Comments
 (0)