We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f1a78d5 commit b6230f3Copy full SHA for b6230f3
pandas/core/window/expanding.py
@@ -51,6 +51,9 @@ class Expanding(RollingAndExpandingMixin):
51
"""
52
Provide expanding window calculations.
53
54
+ An expanding window yields the value of an aggregation statistic with all the data
55
+ available up to that point in time.
56
+
57
Parameters
58
----------
59
min_periods : int, default 1
@@ -69,6 +72,8 @@ class Expanding(RollingAndExpandingMixin):
69
72
Returns
70
73
-------
71
74
pandas.api.typing.Expanding
75
+ An instance of Expanding for further expanding window calculations,
76
+ e.g. using the ``sum`` method.
77
78
See Also
79
--------
0 commit comments