polars.Series.ewm_var#
- Series.ewm_var(
- com: float | None = None,
- span: float | None = None,
- half_life: float | None = None,
- alpha: float | None = None,
- *,
- adjust: bool = True,
- bias: bool = False,
- min_periods: int = 1,
- ignore_nulls: bool = True,
Exponentially-weighted moving variance.
- Parameters:
- com
Specify decay in terms of center of mass,
, with- span
Specify decay in terms of span,
, with- half_life
Specify decay in terms of half-life,
, with- alpha
Specify smoothing factor alpha directly,
.- adjust
Divide by decaying adjustment factor in beginning periods to account for imbalance in relative weightings
When
adjust=True
the EW function is calculated using weightsWhen
adjust=False
the EW function is calculated recursively by
- bias
When
bias=False
, apply a correction to make the estimate statistically unbiased.- min_periods
Minimum number of observations in window required to have a value (otherwise result is null).
- ignore_nulls
Ignore missing values when calculating weights.
When
ignore_nulls=False
(default), weights are based on absolute positions. For example, the weights of and used in calculating the final weighted average of [ , None, ] are and ifadjust=True
, and and ifadjust=False
.When
ignore_nulls=True
, weights are based on relative positions. For example, the weights of and used in calculating the final weighted average of [ , None, ] are and ifadjust=True
, and and ifadjust=False
.
Examples
>>> s = pl.Series("a", [1, 2, 3]) >>> s.ewm_var(com=1) shape: (3,) Series: 'a' [f64] [ 0.0 0.5 0.928571 ]