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,
Exponentially-weighted moving average.
- 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
- 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
.