polars.Series.ewm_mean#

Series.ewm_mean(
com: float | None = None,
span: float | None = None,
half_life: float | None = None,
alpha: float | None = None,
*,
adjust: bool = True,
min_periods: int = 1,
ignore_nulls: bool = True,
) Series[source]#

Exponentially-weighted moving average.

Parameters:
com

Specify decay in terms of center of mass, γ, with

α=11+γγ0
span

Specify decay in terms of span, θ, with

α=2θ+1θ1
half_life

Specify decay in terms of half-life, λ, with

α=1exp{ln(2)λ}λ>0
alpha

Specify smoothing factor alpha directly, 0<α1.

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 weights wi=(1α)i

  • When adjust=False the EW function is calculated recursively by

    y0=x0yt=(1α)yt1+αxt
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 x0 and x2 used in calculating the final weighted average of [x0, None, x2] are (1α)2 and 1 if adjust=True, and (1α)2 and α if adjust=False.

  • When ignore_nulls=True, weights are based on relative positions. For example, the weights of x0 and x2 used in calculating the final weighted average of [x0, None, x2] are 1α and 1 if adjust=True, and 1α and α if adjust=False.