pandas 1.4.2

NotesParametersReturnsBackRef
expanding(self, min_periods: 'int' = 1, center: 'bool_t | None' = None, axis: 'Axis' = 0, method: 'str' = 'single') -> 'Expanding'

Notes

See Windowing Operations <window.expanding> for further usage details and examples.

Parameters

min_periods : int, default 1

Minimum number of observations in window required to have a value; otherwise, result is np.nan .

center : bool, default False

If False, set the window labels as the right edge of the window index.

If True, set the window labels as the center of the window index.

deprecated
axis : int or str, default 0

If 0 or 'index' , roll across the rows.

If 1 or 'columns' , roll across the columns.

method : str {'single', 'table'}, default 'single'

Execute the rolling operation per single column or row ( 'single' ) or over the entire object ( 'table' ).

This argument is only implemented when specifying engine='numba' in the method call.

versionadded

Returns

``Expanding`` subclass

Provide expanding window calculations.

See Also

ewm

Provides exponential weighted functions.

rolling

Provides rolling window calculations.

Examples

This example is valid syntax, but we were not able to check execution
>>> df = pd.DataFrame({"B": [0, 1, 2, np.nan, 4]})
... df B 0 0.0 1 1.0 2 2.0 3 NaN 4 4.0

min_periods

Expanding sum with 1 vs 3 observations needed to calculate a value.

This example is valid syntax, but we were not able to check execution
>>> df.expanding(1).sum()
     B
0  0.0
1  1.0
2  3.0
3  3.0
4  7.0
This example is valid syntax, but we were not able to check execution
>>> df.expanding(3).sum()
     B
0  NaN
1  NaN
2  3.0
3  3.0
4  7.0
See :

Back References

The following pages refer to to this document either explicitly or contain code examples using this.

pandas.core.generic.NDFrame.rolling pandas.core.generic.NDFrame.ewm

Local connectivity graph

Hover to see nodes names; edges to Self not shown, Caped at 50 nodes.

Using a canvas is more power efficient and can get hundred of nodes ; but does not allow hyperlinks; , arrows or text (beyond on hover)

SVG is more flexible but power hungry; and does not scale well to 50 + nodes.

All aboves nodes referred to, (or are referred from) current nodes; Edges from Self to other have been omitted (or all nodes would be connected to the central node "self" which is not useful). Nodes are colored by the library they belong to, and scaled with the number of references pointing them


File: /pandas/core/generic.py#11281
type: <class 'function'>
Commit: