Time Series Models: Naive Methods Averaging Methods
Time Series Models: Naive Methods Averaging Methods
▣
▣Naive
Naive methods
methods
▣
▣Averaging
Averaging methods
methods
◼
◼Simple
SimpleAverage
Average(Mean)
(Mean)
◼
◼Moving
Movingaverage
average
◼
◼Weighted
Weightedmoving
movingaverage
average
◼
◼Exponential
Exponentialsmoothing
smoothing
▣
▣Trend
Trend models
models
◼
◼Linear
Linearand
andnon-linear
non-lineartrend
trend
1
Naive Forecasting
▣ Assumes causal system
past ==> future
▣ Next period forecast = Last Period’s actual:
Naive Forecasting
▣ Next period = last period
▣ Simple to use and understand
▣ Very low cost
▣ Low accuracy
F = forecast A = actual
3
Naive Method - Example
Uh, give me a minute....
We sold 250 wheels last
week.... Now, next week
we should sell....
250
4
Averaging Methods
7
Simple Average - Example
▣ Compute a simple average forecast for period
6, given the demand below
F6 = (42+40+43+40+41) / 5 = 41.2
8
Moving Average
Next period’s forecast = simple average of the
last n periods
Moving Average
▣ average of last few actual data values, updated
each period
◼ easy to calculate and understand
▣ choose number of periods to include
10
Moving Average - Example
▣ Compute a three-period moving average
forecast for period 6, given the demand below
11
Moving Average - Example
▣ Compute a three-period moving average
forecast for period 6, given the demand below
12
Weighted Moving Average
Weighted Moving Average - Example
▣ Compute a 4-period weighted moving average forecast
for period 6.
▣ Use a weight of 0.4 for the most recent period, 0.3 for
the next, 0.2 for the next, and 0.1 for the next.
✹ The choice of weights may involve the use of trial and error to find a suitable
weighting scheme
✹ Weights must add up to 100%
14
Weighted Moving Average - Example
15
Exponential Smoothing Formula
16
Exponential Smoothing
Ft = Ft – 1 + α(At – 1 - Ft – 1)
where Ft = new forecast
Ft – 1 = previous forecast
α = smoothing (or weighting)
constant (0 ≤ α ≤ 1)
Exponential Smoothing
▣ Exponential smoothing consists of projecting
the next period's sales by combining an
average of past sales and the most recent
sales, giving more weight to the latter.