Exponential Smoothing Trend Estimator Enumeration
Enumerates the ways in which the initial value for the trend is estimated.
Definition
Namespace: Extreme.Statistics.TimeSeriesAnalysis
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
public enum ExponentialSmoothingTrendEstimator
Members
Initial | 0 | The difference between the first two observations is taken as the initial value. |
Initial2 | 1 | The average difference between the first two pairs of observations is taken as the initial value. |
Initial3 | 2 | The average difference between the first three pairs of observations is taken as the initial value. |
Complete | 3 | The average difference between all pairs of observations is taken as the initial value. |