bigframes.pandas.DataFrame.expanding#

DataFrame.expanding(min_periods:int=1)Window[source]#

Provide expanding window calculations.

Parameters:

min_periods (int,default 1) – Minimum number of observations in window required to have a value;otherwise, result isnp.nan.

Returns:

Expanding subclass.

Return type:

bigframes.core.window.Window

This Page