Chapter 8 (Exponential smoothing) Flashcards

1
Q

Simple Exponential Smoothing (SES)

A

forecasting data with no clear trend or seasonal pattern

ETS(A,N,N)
- Error: Additive
- Trend: None
- Season: None

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Holt’s linear trend method

A

Allow forecasting of data with a trend

ETS(A,A,N)
- Error: Additive
- Trend: Additive
- Season: None

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Damped trend method

A

Forecasting of data that ‘dampens’ the trend so that it approaches a constant some time in the future

0.8 <= Damp value <= 0.98

ETS(A,Ad,N)
- Error: Additive
- Trend: Additive damped
- Season: None

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

ETS methods with seasonality

Additive vs multiplicative

A
  • Additive method: is preferred when the seasonal variations are roughly constant through the series
  • Multiplicative method: is preferred when the seasonal variations are changing proportional to the level of the series
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Holt-Winters’ additive method

A

ETS(A,A,A)
- Error: Additive
- Trend: Additive
- Season: Additive

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Holt-Winters’ multiplicative method

A

ETS(M,A,M)
- Error: Multiplicative
- Trend: Additive
- Season: Multiplicative

If season is multiplicative, error must also be multiplicative.
Having additive error with multiplicative season may result to numeric instability

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Holt-Winters’ damped method

A

ETS(M,Ad,M)
- Error: Multiplicative
- Trend: Additive damped
- Season: Multiplicative

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

ETS models - general notation

A
  • Error: Additive (A) or Multiplicative (M)
  • Trend: None (N), Additive (A) or Additive damped (Ad)
  • Seasonality: None (N), Additive (A) or Multiplicative (M)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Model selection

A

AIC determines which ETS model is most appropriate

AIC only works with same model types

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Prediction intervals between additive and multiplicative methods

A

Even if same smoothing parameters, the point forecasts will be the same but prediction intervals will differ

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Smoothing parameters

A
  • Alpha (α): if close to 1, then level changes rapidly
  • Beta (β): if close to 1, then trend changes often
  • Gamma (γ): if close to 1, then seasonality updates faster
  • Phi (Φ): damping, often between 0.8 to 0.98
How well did you know this?
1
Not at all
2
3
4
5
Perfectly