ExponentialSmoothingTrendEstimator 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#
public enum ExponentialSmoothingTrendEstimator

Members

Initial0 The difference between the first two observations is taken as the initial value.
Initial21 The average difference between the first two pairs of observations is taken as the initial value.
Initial32 The average difference between the first three pairs of observations is taken as the initial value.
Complete3 The average difference between all pairs of observations is taken as the initial value.

See Also