2 - Simple Exponential Smoothing Flashcards

1
Q

What does a forecast algorithm do?

A

Predicts y(t+1) given y (1:t)

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

How does the simple exponential smoothing works to provide a forecast of y(t+1)?

A

geometrical decreasing weights

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

Why can we say that if t is large, the weights’ sum in the average is approximately one?

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

If j increases, what happens to c?

A

it becomes smaller

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

Classic form of the simple exponential smoothing algorithm

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

Recursive form of the simple exponential smoothing algorithm

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

What does the alpha parameter tell us in the recursive form?

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

Forecast error correction form of the simple exponential smoothing algorithm

A
  • It is another way to write it.
  • Ho moltiplicato (1-α) con y(t|t−1) e poi ho messo in evidenza α
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

How is the forecast function in the simple exponential smoothing?

A

In simple exponential smoothing, the forecast function at time t is assumed to be a constant function of h.
- Praticamente il forecast in t per t+1, t+2 e così via è sempre lo stesso, cioè è flat.

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

How do we tune (choose) the smoothing parameters α?

A
  • consider a (fine) grid of values of α in (0, 1)
  • for each α, use the algorithm to recursively compute the one-step-ahead forecasts, for t = 1, … , T
  • “Score” the forecasts and choose the value α that gives the best predictive performance.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What are the popular measure of predictive performance? That are also the most known scores for the forecast error

A

Scale dependent:
- Mean Absolute Value (MAE)
- Mean Square Error (MSE)

Non scale dependent:
- Mean Absolute Percentage Value (MAPE)

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

Are trend and seasonal behavior envised in simple exponential smoothing?

A

Simple exponential smoothing does not envisage a trend nor a seasonal behavior.

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