Predictive Planning Descriptions 3344040
Predictive Planning Descriptions 3344040
Statistical Descriptions
The topics in this section are for those who want to know more about the forecasting
methods and error measures used in Predictive Planning.
Figure B-1 Typical Single Moving Average Data, Fit, and Forecast Line
Figure B-2 Typical Double Moving Average Data, Fit, and Forecast Line
Figure B-3 Typical Single Exponential Smoothing Data, Fit, and Forecast Line
Figure B-4 Typical Double Exponential Smoothing Data, Fit, and Forecast Line
Figure B-5 Typical Damped Trend Smoothing Data, Fit, and Forecast Line
Seasonal Additive
Calculates a seasonal index for historical data that does not have a trend. The method
produces exponentially smoothed values for the level of the forecast and the seasonal
adjustment to the forecast. The seasonal adjustment is added to the forecasted level,
producing the seasonal additive forecast.
This method is best for data without trend but with seasonality that does not increase
over time. It results in a curved forecast that reproduces the seasonal changes in the
data.
Figure B-6 Typical Seasonal Additive Data, Fit, and Forecast Curve without Trend
Seasonal Multiplicative
Calculates a seasonal index for historical data that does not have a trend. The method
produces exponentially smoothed values for the level of the forecast and the seasonal
adjustment to the forecast. The seasonal adjustment is multiplied by the forecasted
level, producing the seasonal multiplicative forecast.
This method is best for data without trend but with seasonality that increases or
decreases over time. It results in a curved forecast that reproduces the seasonal
changes in the data.
Figure B-7 Typical Seasonal Multiplicative Data, Fit, and Forecast Curve without
Trend
Holt-Winters’ Additive
Is an extension of Holt's exponential smoothing that captures seasonality. This method
produces exponentially smoothed values for the level of the forecast, the trend of the
forecast, and the seasonal adjustment to the forecast. This seasonal additive method
adds the seasonality factor to the trended forecast, producing the Holt-Winters’
additive forecast.
This method is best for data with trend and seasonality that does not increase over
time. It results in a curved forecast that shows the seasonal changes in the data.
Figure B-8 Typical Holt-Winters’ Additive Data, Fit, and Forecast Curve
Holt-Winters’ Multiplicative
Is similar to the Holt-Winters’ additive method. Holt-Winters’ Multiplicative method
also calculates exponentially smoothed values for level, trend, and seasonal
adjustment to the forecast. This seasonal multiplicative method multiplies the trended
forecast by the seasonality, producing the Holt-Winters’ multiplicative forecast.
This method is best for data with trend and with seasonality that increases over time.
It results in a curved forecast that reproduces the seasonal changes in the data.
Figure B-9 Typical Holt-Winters’ Multiplicative Data, Fit, and Forecast Curve
Figure B-10 Typical Damped Trend Additive Data, Fit, and Forecast Curve
Figure B-11 Typical Damped Trend Multiplicative Data, Fit, and Forecast Curve
• alpha (α) — Smoothing parameter for the level component of the forecast. The
value of alpha can be any number between 0 and 1, not inclusive.
• beta (β) — Smoothing parameter for the trend component of the forecast. The value
of beta can be any number between 0 and 1, not inclusive.
• gamma (γ) — Smoothing parameter for the seasonality component of the forecast.
The value of gamma can be any number between 0 and 1, not inclusive.
• phi (Φ) — Damping parameter; any number between 0 and 1, not inclusive.
Each seasonal forecasting method uses some or all of these parameters, depending on
the forecasting method. For example, the seasonal additive forecasting method does
not account for trend, so it does not use the beta parameter.
The damped trend methods use phi in addition to the other three.
3. Model checking
ARIMA is a univariate process. Current values of a data series are correlated with past
values in the same series to produce the AR component, also known as p. Current
values of a random error term are correlated with past values to produce the MA
component, q. Mean and variance values of current and past data are assumed to be
stationary, unchanged over time. If necessary, an I component (symbolized by d) is
added to correct for a lack of stationarity through differencing.
In a nonseasonal ARIMA(p,d,q) model, p indicates the number or order of AR terms, d
indicates the number or order of differences, and q indicates the number or order of
MA terms. The p, d, and q parameters are integers equal to or greater than 0.
Cyclical or seasonal data values are indicated by a seasonal ARIMA model of the
format:
SARIMA(p,d,q)(P,D,Q)(t)
The second group of parameters in parentheses are the seasonal values. Seasonal
ARIMA models consider the number of time periods in a cycle. For a year, the number
of time periods (t) is 12.
Note:
RMSE
RMSE (root mean squared error) is an absolute error measure that squares the
deviations to keep the positive and negative deviations from cancelling out one
another. This measure also tends to exaggerate large errors, which can help eliminate
methods with large errors.