Exponentially-weighted moving average.
Optionalalpha: numberSpecify smoothing factor alpha directly, :math:0 < \alpha \leq 1.
Optionaladjust: 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
OptionalminPeriods: numberMinimum number of observations in window required to have a value (otherwise result is null).
Optionalbias: booleanWhen bias: false, apply a correction to make the estimate statistically unbiased.
OptionalignoreNulls: 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.
Optionalalpha: numberSpecify smoothing factor alpha directly, :math:0 < \alpha \leq 1.
Optionaladjust: 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
OptionalminPeriods: numberMinimum number of observations in window required to have a value (otherwise result is null).
Optionalbias: booleanWhen bias: false, apply a correction to make the estimate statistically unbiased.
OptionalignoreNulls: 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.
Optionalalpha: numberSpecify smoothing factor alpha directly, :math:0 < \alpha \leq 1.
Optionaladjust: 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
OptionalminPeriods: numberMinimum number of observations in window required to have a value (otherwise result is null).
Optionalbias: booleanWhen bias: false, apply a correction to make the estimate statistically unbiased.
OptionalignoreNulls: 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