polars.Series.rolling_std#
- Series.rolling_std(
- window_size: int,
- weights: list[float] | None = None,
- *,
- min_samples: int | None = None,
- center: bool = False,
- ddof: int = 1,
Compute a rolling std dev.
A window of length
window_sizewill traverse the array. The values that fill this window will (optionally) be multiplied with the weights given by theweightvector. The resulting values will be aggregated to their std dev.The window at a given row will include the row itself and the
window_size - 1elements before it.Changed in version 1.21.0: The
min_periodsparameter was renamedmin_samples.- Parameters:
- window_size
The length of the window in number of elements.
- weights
An optional slice with the same length as the window that will be multiplied elementwise with the values in the window.
- min_samples
The number of values in the window that should be non-null before computing a result. If set to
None(default), it will be set equal towindow_size.- center
Set the labels at the center of the window.
- ddof
“Delta Degrees of Freedom”: The divisor for a length N window is N - ddof
Examples
>>> s = pl.Series("a", [1.0, 2.0, 3.0, 4.0, 6.0, 8.0]) >>> s.rolling_std(window_size=3) shape: (6,) Series: 'a' [f64] [ null null 1.0 1.0 1.527525 2.0 ]