|
Calling Sequence
|
|
Forecast(model, n, extraparameters, opts)
Forecast(model, ts, n, extraparameters, opts)
|
|
Parameters
|
|
model
|
-
|
Exponential smoothing model
|
ts
|
-
|
Time series consisting of a single data set
|
n
|
-
|
nonnegative integer indicating how many data points should be forecast
|
extraparameters
|
-
|
(optional) table of parameter values
|
opts
|
-
|
(optional) equation(s) of the form optionname = value, where optionname is one of output, runs, and evolve
|
|
|
|
|
Description
|
|
•
|
The Forecast command generates a forecast for a time series using an exponential smoothing model.
|
•
|
If a time series is not specified in the calling sequence, then the time series that model is created from will be used.
|
•
|
The number n is the number of data points that will be forecast.
|
•
|
The value of any of the parameters can be overridden by supplying the extraparameters option. It is a table in the format returned by Initialize: its indices are global names corresponding to parameters, and the values are their values as explained in the Exponential smoothing model help page.
|
|
|
Options
|
|
•
|
output= point, runs, percentiles(p1, p2, ..., pn), quantiles(q1, q2, ..., qn), or confidenceintervals(c1, c2, ..., cn)
|
|
By default, Maple will generate a point forecast by assuming the future residuals will all be . Other forms of output can be selected using the output option.
|
–
|
output = percentiles(p1, p2, ..., pn) returns time series that represent the p1th, p2th, ..., pnth percentile of the distribution of the values generated by the model. This is obtained via simulation.
|
–
|
output = quantiles(q1, q2, ..., qn) returns time series that represent the q1th, q2th, ..., qnth quantile of the distribution of the values generated by the model. The only difference with percentiles is that, e.g., p1 = 5 will be interpreted in the same way as q1 = 0.05.
|
–
|
output = confidenceintervals(c1, c2, ..., cn) returns time series: the 50 - ci/2 and 50 + ci/2 percentiles for i from 1 to n, and the 50th percentile. For example, confidenceintervals(80, 95) will return the , , , , and percentiles.
|
–
|
output = runs returns all simulated future time series. This requires that the runs = k option is also included. (See below.)
|
–
|
output = point selects the default behavior of point forecasts obtained by setting all future residuals to .
|
•
|
runs= nonnegative integer
|
|
For any setting of the output option other than point, Maple will run multiple forecasts. The runs option determines the number of forecasts used to arrive at this output. If output is of the form percentiles(p1, p2, ..., pn) or quantiles(q1, q2, ..., qn) or confidenceintervals(c1, c2, ..., cn), then by default, Maple chooses the number of runs between and depending on the particular values chosen. For example, for percentiles(10, 50, 70), the default number of runs is . The runs option overrides this default. It is a required option if output = runs is selected: there is no default value. If output = point, then the runs option is ignored.
|
•
|
evolve= true, false, or a nonnegative integer
|
|
Normally, the values of the model parameters represent the model at the beginning of the time series, and the values we would like to forecast are after the end of the time series. In this case, the state of the model needs to evolve through the time series in order to obtain the state at the end. This is the default behavior. If you would like to use the model as is, you can supply the option evolve = false. If you want the model to evolve only a limited number of steps, say k, you can supply the option evolve = k. All of this applies only to evolution of the model before the actual forecast is started.
|
|
|
Examples
|
|
>
|
|
Consider the following time series. It represents international tourist visitor nights in Australia.
>
|
|
| (1) |
Fit an exponential smoothing model to it.
>
|
|
| (2) |
Now get the point forecast of this model for two years.
>
|
|
| (3) |
>
|
|
Or specify the time series explicitly.
>
|
|
| (4) |
>
|
|
Add confidence intervals.
>
|
|
| (5) |
>
|
|
If you use a larger number of runs, the confidence intervals will be slightly more accurate.
>
|
|
| (6) |
>
|
|
You can also see how the model would forecast the data of 2009-2010. That means you need to evolve the model for only four years, or 16 time steps, before starting to forecast.
>
|
|
| (7) |
>
|
|
|
|
References
|
|
|
Hyndman, R.J. and Athanasopoulos, G. (2013) Forecasting: principles and practice. http://otexts.org/fpp/. Accessed on 2013-10-09.
|
|
Hyndman, R.J., Koehler, A.B., Ord, J.K., and Snyder, R.D. (2008) Forecasting with Exponential Smoothing: The State Space Approach. Springer Series in Statistics. Springer-Verlag Berlin Heidelberg.
|
|
|
Compatibility
|
|
•
|
The TimeSeriesAnalysis[Forecast] command was introduced in Maple 18.
|
•
|
The TimeSeriesAnalysis[Forecast] command was updated in Maple 2015.
|
|
|
|