hipdf.core.window.rolling.Rolling.std#
19 min read time
Applies to Linux
- Rolling.std(ddof: int = 1) DataFrame | Series#
Calculate the rolling standard deviation.
Parameters#
- ddofint, default 1
Delta Degrees of Freedom. The divisor used in calculations is
N - ddof, whereNrepresents the number of elements.
Returns#
- Series or DataFrame
Return type is the same as the original object.