Exponential Smoothing Trend Estimator Enumeration
Enumerates the ways in which the initial value for the trend is estimated.
Definition
Namespace: Numerics.NET.Statistics.TimeSeriesAnalysis
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
C#
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
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. |