Exponentially-weighted moving average.
Optional
alpha: numberSpecify smoothing factor alpha directly, :math:0 < \alpha \leq 1
.
Optional
adjust: booleanDivide by decaying adjustment factor in beginning periods to account for imbalance in relative weightings
- When adjust: true
the EW function is calculated using weights :math:w_i = (1 - \alpha)^i
- When adjust=false
the EW function is calculated recursively
Optional
minPeriods: numberMinimum number of observations in window required to have a value (otherwise result is null).
Optional
bias: booleanWhen bias: false
, apply a correction to make the estimate statistically unbiased.
Optional
ignoreNulls: booleanIgnore missing values when calculating weights.
- When ignoreNulls: false
(default), weights are based on absolute positions.
- When ignoreNulls: true
, weights are based on relative positions.
Expr that evaluates to a float 64 Series.
Exponentially-weighted standard deviation.
Optional
alpha: numberSpecify smoothing factor alpha directly, :math:0 < \alpha \leq 1
.
Optional
adjust: booleanDivide by decaying adjustment factor in beginning periods to account for imbalance in relative weightings
- When adjust: true
the EW function is calculated using weights :math:w_i = (1 - \alpha)^i
- When adjust: false
the EW function is calculated recursively
Optional
minPeriods: numberMinimum number of observations in window required to have a value (otherwise result is null).
Optional
bias: booleanWhen bias: false
, apply a correction to make the estimate statistically unbiased.
Optional
ignoreNulls: booleanIgnore missing values when calculating weights.
- When ignoreNulls: false
(default), weights are based on absolute positions.
For example, the weights of :math:x_0
and :math:x_2
used in calculating the final weighted average of
- When ignoreNulls: true
, weights are based on relative positions.
Expr that evaluates to a float 64 Series.
Exponentially-weighted variance.
Optional
alpha: numberSpecify smoothing factor alpha directly, :math:0 < \alpha \leq 1
.
Optional
adjust: booleanDivide by decaying adjustment factor in beginning periods to account for imbalance in relative weightings
- When adjust: true
the EW function is calculated using weights :math:w_i = (1 - \alpha)^i
- When adjust: false
the EW function is calculated recursively
Optional
minPeriods: numberMinimum number of observations in window required to have a value (otherwise result is null).
Optional
bias: booleanWhen bias: false
, apply a correction to make the estimate statistically unbiased.
Optional
ignoreNulls: booleanIgnore missing values when calculating weights.
- When ignoreNulls: false
(default), weights are based on absolute positions.
- When ignoreNulls=true
, weights are based on relative positions.
Expr that evaluates to a float 64 Series.
Exponentially-weighted operations that can be applied to a Series and Expr