Window¶
Rolling objects are returned by .rolling
calls: pandas_on_spark.DataFrame.rolling()
, pandas_on_spark.Series.rolling()
, etc.
Expanding objects are returned by .expanding
calls: pandas_on_spark.DataFrame.expanding()
, pandas_on_spark.Series.expanding()
, etc.
Standard moving window functions¶
The rolling count of any non-NaN observations inside the window. |
|
Calculate rolling summation of given DataFrame or Series. |
|
Calculate the rolling minimum. |
|
Calculate the rolling maximum. |
|
Calculate the rolling mean of the values. |
Standard expanding window functions¶
The expanding count of any non-NaN observations inside the window. |
|
Calculate expanding summation of given DataFrame or Series. |
|
Calculate the expanding minimum. |
|
Calculate the expanding maximum. |
|
Calculate the expanding mean of the values. |