Automatic Time Series Forecasting: The Forecast Package For R
Automatic Time Series Forecasting: The Forecast Package For R
net/publication/222105759
CITATIONS READS
1,553 2,339
2 authors, including:
Rob J Hyndman
Monash University (Australia)
300 PUBLICATIONS 20,183 CITATIONS
SEE PROFILE
Some of the authors of this publication are also working on these related projects:
Novel Approaches for Linking Air Quality Mixtures, Climate, and Human Health View project
Stress-testing algorithms: generating new test instances to elicit insights View project
All content following this page was uploaded by Rob J Hyndman on 31 May 2014.
June 2007
Rob J Hyndman
Department of Econometrics and Business Statistics,
Monash University, VIC 3800
Australia.
Email: [email protected]
Yeasmin Khandakar
Department of Econometrics and Business Statistics,
Monash University, VIC 3800
Australia.
Email: [email protected]
11 June 2007
Abstract: Automatic forecasts of large numbers of univariate time series are often needed
in business and other contexts. We describe two automatic forecasting algorithms that have
been implemented in the forecast package for R. The first is based on innovations state space
models that underly exponential smoothing methods. The second is a step-wise algorithm for
forecasting with ARIMA models. The algorithms are applicable to both seasonal and non-
seasonal data, and are compared and illustrated using four real time series. We also briefly
describe some of the other functionality available in the forecast package.
Automatic forecasts of large numbers of univariate time series are often needed in busi-
ness. It is common to have over one thousand product lines that need forecasting at least
monthly. Even when a smaller number of forecasts is required, there may be nobody
suitably trained in the use of time series models to produce them. In these circumstances,
an automatic forecasting algorithm is an essential tool. Automatic forecasting algorithms
must determine an appropriate time series model, estimate the parameters and compute
the forecasts. They must be robust to unusual time series patterns, and applicable to large
numbers of series without user intervention. The most popular automatic forecasting al-
gorithms are based on either exponential smoothing or ARIMA models.
1 Exponential smoothing
Although exponential smoothing methods have been around since the 1950s, a mod-
elling framework incorporating procedures for model selection was not developed until
relatively recently. Ord et al. (1997), Hyndman et al. (2002) and Hyndman et al. (2005b)
have shown that all exponential smoothing methods (including non-linear methods) are
optimal forecasts from innovations state space models.
This was later extended by Gardner (1985), modified by Hyndman et al. (2002), and ex-
tended again by Taylor (2003), giving a total of fifteen methods seen in the following
table.
Seasonal Component
Trend N A M
Component (None) (Additive) (Multiplicative)
Ad (Additive damped) Ad ,N Ad ,A Ad ,M
Md (Multiplicative damped) Md ,N Md ,A Md ,M
Some of these methods are better known under other names. For example, cell (N,N)
describes the simple exponential smoothing (or SES) method, cell (A,N) describes Holt’s
linear method, and cell (Ad ,N) describes the damped trend method. The additive Holt-
Winters’ method is given by cell (A,A) and the multiplicative Holt-Winters’ method is
given by cell (A,M). The other cells correspond to less commonly used but analogous
methods.
We denote the observed time series by y1 , y2 , . . . , yn . A forecast of yt+h based on all of the
data up to time t is denoted by ŷt+h|t . To illustrate the method, we give the point forecasts
and updating equations for method (A,A), the Holt-Winters’ additive method:
where m is the length of seasonality (e.g., the number of months or quarters in a year),
ℓt represents the level of the series, bt denotes the growth, st is the seasonal component,
ŷt+h|t is the forecast for h periods ahead, and h+
m = (h − 1) mod m + 1. To use method
(1), we need values for the initial states ℓ0 , b0 and s1−m , . . . , s0 , and for the smoothing
parameters α, β ∗ and γ. All of these will be estimated from the observed data.
Equation (1c) is slightly different from the usual Holt-Winters equations such as those in
Makridakis et al. (1998) or Bowerman et al. (2005). These authors replace (1c) with
st = γ ∗ (yt − ℓt ) + (1 − γ ∗ )st−m .
Thus, we obtain identical forecasts using this approach by replacing γ in (1c) with γ ∗ (1 −
α). The modification given in (1c) was proposed by Ord et al. (1997) to make the state
space formulation simpler. It is equivalent to Archibald’s (1990) variation of the Holt-
Winters’ method.
Table 1 gives recursive formulae for computing point forecasts h periods ahead for all of
the exponential smoothing methods. In each case, ℓt denotes the series level at time t,
bt denotes the slope at time t, st denotes the seasonal component of the series at time
t and m denotes the number of seasons in a year; α, β ∗ , γ and φ are constants, and
φh = φ + φ2 + · · · + φh .
Some interesting special cases can be obtained by setting the smoothing parameters to
extreme values. For example, if α = 0, the level is constant over time; if β ∗ = 0, the slope
is constant over time; and if γ = 0, the seasonal pattern is constant over time. At the other
extreme, naı̈ve forecasts (i.e., ŷt+h|t = yt for all h) are obtained using the (N,N) method
with α = 1. Finally, the additive and multiplicative trend methods are special cases of
their damped counterparts obtained by letting φ = 1.
Table 1: Formulae for recursive calculations and point forecasts. In each case, ℓt denotes the series level at time t, bt denotes the slope at time t,
st denotes the seasonal component of ∗
2 h +
t, and m denotes the number of seasons in a year; α, β , γ and φ are constants,
the series at time
φh = φ + φ + · · · + φ and hm = (h − 1) mod m + 1.
5
Automatic time series forecasting: the forecast package for R
For each exponential smoothing method in Table 1, Hyndman et al. (2002) describe two
possible innovations state space models, one corresponding to a model with additive
errors and the other to a model with multiplicative errors. If the same parameter values
are used, these two models give equivalent point forecasts, although different prediction
intervals. Thus there are 30 potential models described in this classification.
Historically, the nature of the error component has often been ignored, because the dis-
tinction between additive and multiplicative errors makes no difference to point fore-
casts.
We are careful to distinguish exponential smoothing methods from the underlying state
space models. An exponential smoothing method is an algorithm for producing point
forecasts only. The underlying stochastic state space model gives the same point fore-
casts, but also provides a framework for computing prediction intervals and other prop-
erties.
To distinguish the models with additive and multiplicative errors, we add an extra letter
to the front of the method notation. The triplet (E,T,S) refers to the three components:
error, trend and seasonality. So the model ETS(A,A,N) has additive errors, additive trend
and no seasonality—in other words, this is Holt’s linear method with additive errors.
Similarly, ETS(M,Md ,M) refers to a model with multiplicative errors, a damped multi-
plicative trend and multiplicative seasonality. The notation ETS(·,·,·) helps in remember-
ing the order in which the components are specified.
Once a model is specified, we can study the probability distribution of future values
of the series and find, for example, the conditional mean of a future observation given
knowledge of the past. We denote this as µt+h|t = E(yt+h | xt ), where xt contains the
unobserved components such as ℓt , bt and st . For h = 1 we use µt ≡ µt+1|t as a short-
hand notation. For many models, these conditional means will be identical to the point
forecasts given in Table 1, so that µt+h|t = ŷt+h|t . However, for other models (those with
multiplicative trend or multiplicative seasonality), the conditional mean and the point
forecast will differ slightly for h ≥ 2.
We illustrate these ideas using the damped trend method of Gardner and McKenzie
(1985).
Let µt = ŷt = ℓt−1 + bt−1 denote the one-step forecast of yt assuming that we know the
values of all parameters. Also, let εt = yt − µt denote the one-step forecast error at time
t. From the equations in Table 1, we find that
We simplify the last expression by setting β = αβ ∗ . The three equations above constitute
a state space model underlying the damped Holt’s method. Note that it is an innovations
state space model (Anderson and Moore, 1979; Aoki, 1987) because the same error term
appears in each equation. We can write it in standard state space notation by defining the
state vector as xt = (ℓt , bt )′ and expressing (2)–(4) as
yt = [1 φ] xt−1 + εt (5a)
1 φ α
xt = xt−1 + εt . (5b)
0 φ β
The model is fully specified once we state the distribution of the error term εt . Usually
we assume that these are independent and identically distributed, following a normal
distribution with mean 0 and variance σ 2 , which we write as εt ∼ NID(0, σ 2 ).
A model with multiplicative error can be derived similarly, by first setting εt = (yt −
µt )/µt , so that εt is the relative error. Then, following a similar approach to that for
additive errors, we find
or
yt = [1 φ] xt−1 (1 + εt )
1 φ α
xt = xt−1 + [1 φ] xt−1 εt .
0 φ β
Of course, this is a nonlinear state space model, which is usually considered difficult to
handle in estimating and forecasting. However, that is one of the many advantages of the
innovations form of state space models — we can still compute forecasts, the likelihood
and prediction intervals for this nonlinear model with no more effort than is required for
the additive error model.
We now give the state space models for all 30 exponential smoothing variations. The
general model involves a state vector xt = (ℓt , bt , st , st−1 , . . . , st−m+1 )′ and state space
equations of the form
where {εt } is a Gaussian white noise process with mean zero and variance σ 2 , and µt =
w(xt−1 ). The model with additive errors has r(xt−1 ) = 1, so that yt = µt + εt . The model
with multiplicative errors has r(xt−1 ) = µt , so that yt = µt (1 + εt ). Thus, εt = (yt − µt )/µt
is the relative error for the multiplicative model. The models are not unique. Clearly, any
value of r(xt−1 ) will lead to identical point forecasts for yt .
All of the methods in Table 1 can be written in the form (6a) and (6b). The underlying
equations for additive error models are given in Table 2. We use β = αβ ∗ to simplify
the notation. Multiplicative error models are obtained by replacing εt with µt εt in the
Table 2: State space equations for each additive error model in the classification.
9
Hyndman and Khandakar: June 2007
Table 3: State space equations for each multiplicative error model in the classification.
10
Automatic time series forecasting: the forecast package for R
equations of Table 2. The resulting multiplicative error equations are given in Table 3.
Some of the combinations of trend, seasonality and error can occasionally lead to numer-
ical difficulties; specifically, any model equation that requires division by a state compo-
nent could involve division by zero. This is a problem for models with additive errors
and either multiplicative trend or multiplicative seasonality, as well as for the model with
multiplicative errors, multiplicative trend and additive seasonality. These models should
therefore be used with caution.
The multiplicative error models are useful when the data are strictly positive, but are not
numerically stable when the data contain zeros or negative values. So when the time
series is not strictly positive, only the six fully additive models may be applied.
The point forecasts given in Table 1 are easily obtained from these models by iter-
ating equations (6a) and (6b) for t = n + 1, n + 2, . . . , n + h, setting εn+j = 0 for
j = 1, . . . , h. In most cases (notable exceptions being models with multiplicative sea-
sonality or multiplicative trend for h ≥ 2), the point forecasts can be shown to be equal to
µt+h|t = E(yt+h | xt ), the conditional expectation of the corresponding state space model.
The models also provide a means of obtaining prediction intervals. In the case of the
linear models, where the forecast distributions are normal, we can derive the conditional
variance vt+h|t = Var(yt+h | xt ) and obtain prediction intervals accordingly. This ap-
proach also works for many of the nonlinear models. Detailed derivations of the results
for many models are given in Hyndman et al. (2005b).
A more direct approach that works for all of the models is to simply simulate many fu-
ture sample paths conditional on the last estimate of the state vector, xt . Then prediction
intervals can be obtained from the percentiles of the simulated sample paths. Point fore-
casts can also be obtained in this way by taking the average of the simulated values at
each future time period. An advantage of this approach is that we generate an estimate
of the complete predictive distribution, which is especially useful in applications such as
inventory planning, where expected costs depend on the whole distribution.
1.4 Estimation
In order to use these models for forecasting, we need to know the values of x0 and the
parameters α, β, γ and φ. It is easy to compute the likelihood of the innovations state
space model (6), and so obtain maximum likelihood estimates. Ord et al. (1997) show
that
n
X n
X
∗
L (θ, x0 ) = n log ε2t +2 log |r(xt−1 )| (7)
t=1 t=1
is equal to twice the negative logarithm of the likelihood function (with constant terms
eliminated), conditional on the parameters θ = (α, β, γ, φ)′ and the initial states x0 =
(ℓ0 , b0 , s0 , s−1 , . . . , s−m+1 )′ , where n is the number of observations. This is easily com-
puted by simply using the recursive equations in Table 1. Unlike state space models
with multiple sources of error, we do not need to use the Kalman filter to compute the
likelihood.
The parameters θ and the initial states x0 can be estimated by minimizing L∗ . Most
implementations of exponential smoothing use an ad hoc heuristic scheme to estimate
x0 . However, with modern computers, there is no reason why we cannot estimate x0
along with θ, and the resulting forecasts are often substantially better when we do.
We constrain the initial states x0 so that the seasonal indices add to zero for additive sea-
sonality, and add to m for multiplicative seasonality. There have been several suggestions
for restricting the parameter space for α, β and γ. The traditional approach is to ensure
that the various equations can be interpreted as weighted averages, thus requiring α,
β ∗ = β/α, γ ∗ = γ/(1 − α) and φ to all lie within (0, 1). This suggests
However, Hyndman et al. (2007) show that these restrictions are usually stricter than nec-
essary (although in a few cases they are not restrictive enough).
The forecast accuracy measures described in the previous section can be used for selecting
a model for a given set of data, provided the errors are computed from data in a hold-
out set and not from the same data as were used for model estimation. However, there
are often too few out-of-sample errors to draw reliable conclusions. Consequently, a
penalized method based on the in-sample fit is usually better.
One such approach uses a penalized likelihood such as Akaike’s Information Criterion:
where q is the number of parameters in θ plus the number of free states in x0 , and θ̂ and
x̂0 denote the estimates of θ and x0 . We select the model that minimizes the AIC amongst
all of the models that are appropriate for the data.
The AIC also provides a method for selecting between the additive and multiplicative
error models. The point forecasts from the two models are identical so that standard
forecast accuracy measures such as the mean squared error (MSE) or mean absolute per-
centage error (MAPE) are unable to select between the error types. The AIC is able to
select between the error types because it is based on likelihood rather than one-step fore-
casts.
Obviously, other model selection criteria (such as the BIC) could also be used in a similar
manner.
We combine the preceding ideas to obtain a robust and widely applicable automatic fore-
casting algorithm. The steps involved are summarized below.
1. For each series, apply all models that are appropriate, optimizing the parameters
(both smoothing parameters and the initial state variable) of the model in each case.
2. Select the best of the models according to the AIC.
3. Produce point forecasts using the best model (with optimized parameters) for as
many steps ahead as required.
4. Obtain prediction intervals for the best model either using the analytical results of
Hyndman et al. (2005b), or by simulating future sample paths for {yn+1 , . . . , yn+h }
and finding the α/2 and 1 − α/2 percentiles of the simulated data at each forecast-
ing horizon. If simulation is used, the sample paths may be generated using the
normal distribution for errors (parametric bootstrap) or using the resampled errors
(ordinary bootstrap).
Hyndman et al. (2002) applied this automatic forecasting strategy to the M-competition
data (Makridakis et al., 1982) and the IJF-M3 competition data (Makridakis and Hibon,
2000) using a restricted set of exponential smoothing models, and demonstrated that the
methodology is particularly good at short term forecasts (up to about 6 periods ahead),
and especially for seasonal short-term series (beating all other methods in the competi-
tions for these series).
2 ARIMA models
A common obstacle for many people in using Autoregressive Integrated Moving Average
(ARIMA) models for forecasting is that the order selection process is usually considered
subjective and difficult to apply. But it does not have to be. There have been several
attempts to automate ARIMA modelling in the last 25 years.
Hannan and Rissanen (1982) proposed a method to identify the order of an ARMA model
for a stationary series. In their method the innovations can be obtained by fitting a long
autoregressive model to the data, and then the likelihood of potential models is computed
via a series of standard regressions. They established the asymptotic properties of the
procedure under very general conditions.
Liu (1989) proposed a method for identification of seasonal ARIMA models using a fil-
tering method and certain heuristic rules; this algorithm is used in the SCA-Expert soft-
ware. Another approach is described by Mélard and Pasteels (2000) whose algorithm for
Other algorithms are in use in commercial software, although they are not documented in
the public domain literature. In particular, Forecast Pro (Goodrich, 2000) is well-known
for its excellent automatic ARIMA algorithm which was used in the M3-forecasting com-
petition (Makridakis and Hibon, 2000). Another proprietary algorithm is implemented
in AutoBox (Reilly, 2000). Ord and Lowe (1996) provide an early review of some of the
commercial software that implement automatic ARIMA forecasting.
2.1 Choosing the model order using unit root tests and the AIC
where {εt } is a white noise process with mean zero and variance σ 2 , B is the backshift
operator, and φ(z) and θ(z) are polynomials of order p and q respectively. To ensure
causality and invertibility, it is assumed that φ(z) and θ(z) have no roots for |z| < 1
(Brockwell and Davis, 1991). If c 6= 0, there is an implied polynomial of order d in the
forecast function.
where Φ(z) and Θ(z) are polynomials of orders P and Q respectively, each containing no
roots inside the unit circle. If c 6= 0, there is an implied polynomial of order d + D in the
forecast function.
The main task in automatic ARIMA forecasting is selecting an appropriate model order,
that is the values p, q, P , Q, D, d. If d and D are known, we can select the orders p, q, P
and Q via an information criterion such as the AIC:
One solution to this difficulty is the “diffuse prior” approach which is outlined in
Durbin and Koopman (2001) and implemented in the arima function in R. In this ap-
proach, the initial values of the time series (before the observed values) are assumed to
have mean zero and a large variance. However, choosing d and D by minimizing the
AIC using this approach tends to lead to over-differencing. For forecasting purposes,
we believe it is better to make as few differences as possible because over-differencing
harms forecasts (Smith and Yadav, 1994) and widens prediction intervals. (Although, see
Hendry (1997) for a contrary view.)
Consequently, we need some other approach to choose d and D. We prefer unit-root tests.
However, most unit-root tests are based on a null hypothesis that a unit root exists which
biases results towards more differences rather than fewer differences. For example, vari-
ations on the Dickey-Fuller test (Dickey and Fuller, 1981) all assume there is a unit root
at lag 1, and the HEGY test of Hylleberg et al. (1990) is based on a null hypothesis that
there is a seasonal unit root. Instead, we prefer unit-root tests based on a null hypothesis
of no unit-root.
For seasonal data, we consider ARIMA(p, d, q)(P, D, Q)m models where m is the sea-
sonal frequency and D = 0 or D = 1 depending on an extended Canova-Hansen
test (Canova and Hansen, 1995). Canova and Hansen only provide critical values for
2 < m < 13. In our implementation of their test, we allow any value of m > 1. Let Cm
be the critical value for seasonal period m. We plotted Cm against m for values of m up
to 365 and noted that they fit the line Cm = 0.269m0.928 almost exactly. So for m > 12, we
use this simple expression to obtain the critical value.
We note in passing that the null hypothesis for the Canova-Hansen test is not an ARIMA
model as it includes seasonal dummy terms. It is a test for whether the seasonal pattern
changes sufficiently over time to warrant a seasonal unit root, or whether a stable sea-
sonal pattern modelled using fixed dummy variables is more appropriate. Nevertheless,
we have found that the test is still useful for choosing D in a strictly ARIMA framework
(i.e., without seasonal dummy variables). If a stable seasonal pattern is selected (i.e.,
the null hypothesis is not rejected), the seasonality is effectively handled by stationary
seasonal AR and MA terms.
After D is selected, we choose d by applying successive KPSS unit-root tests to the sea-
sonally differenced data (if D = 1) or the original data (if D = 0). Once d (and possibly
D) are selected, we proceed to select the values of p, q, P and Q by minimizing the AIC.
We allow c 6= 0 for models where d + D < 2.
Suppose we have seasonal data and we consider ARIMA(p, d, q)(P, D, Q)m models where
p and q can take values from 0 to 3, and P and Q can take values from 0 to 1. When c = 0
there are a total of 288 possible models, and when c 6= 0 there are a total of 192 possible
models, giving 480 models altogether. If the values of p, d, q, P , D and Q are allowed
to range more widely, the number of possible models increases rapidly. Consequently,
it is often not feasible to simply fit every potential model and choose the one with the
lowest AIC. Instead, we need a way of traversing the space of models efficiently in order
to arrive at the model with the lowest AIC value.
four models, we select the one with the smallest AIC value. This is called the “cur-
rent” model and is denoted by ARIMA(p, d, q) if m = 1 or ARIMA(p, d, q)(P, D, Q)m
if m > 1.
Whenever a model with lower AIC is found, it becomes the new “current” model
and the procedure is repeated. This process finishes when we cannot find a model
close to the current model with lower AIC.
There are several constraints on the fitted models to avoid problems with convergence or
near unit-roots. The constraints are outlined below.
• The values of p and q are not allowed to exceed specified upper bounds (with de-
fault values of 5 in each case).
• The values of P and Q are not allowed to exceed specified upper bounds (with
default values of 2 in each case).
• If there are any errors arising in the non-linear optimization routine used for esti-
mation, the model is rejected. The rationale here is that any model that is difficult
to fit is probably not a good model for the data.
The algorithm is guaranteed to return a valid model because the model space is finite
and at least one of the starting models will be accepted (the model with no AR or MA
parameters). The selected model is used to produce forecasts.
The algorithms and modelling frameworks for automatic univariate time series forecast-
ing are implemented in the forecast package (Hyndman, 2007) in R. It is available from
CRAN. Version 1.05 of the package was used for this paper.
We illustrate the methods using the following four real time series shown in Figure 1.
• Figure 1(a) shows 125 monthly U.S. government bond yields (percent per annum)
from January 1994 to May 2004.
• Figure 1(b) displays 55 observations of annual U.S. net electricity generation (billion
kwh) for 1949 through 2003.
• Figure 1(c) presents 113 quarterly observations of passenger motor vehicle produc-
tion in the U.K. (thousands of cars) for the first quarter of 1977 through the first
quarter of 2005.
• Figure 1(d) shows 240 monthly observations of the number of short term overseas
visitors to Australia from May 1985 to April 2005.
Figure 1: Four time series showing point forecasts and 80% & 95% prediction intervals obtained
using exponential smoothing state space models.
(a) US 10−year bonds yield (b) US net electricity generation
5000
8
Percentage per annum
Billion kwh
3000
6
5
1000
4
3
0 20 40 60 80 100 120 140 1950 1960 1970 1980 1990 2000 2010
Year Year
Thousands of people
Thousands of cars
600
400
400
300
200
200
1980 1985 1990 1995 2000 2005 1985 1990 1995 2000 2005
Year Year
The object etsfit contains all of the necessary information about the fitted model in-
cluding model parameters, the value of the state vector xt for all t, residuals and so on.
The forecast function computes the required forecasts which are then plotted as in Fig-
ure 1(b).
There is a predict method for the resulting object which can produce point forecasts and
prediction intervals. Although it is nowhere documented, it appears that the prediction
intervals produced by predict for an object of class HoltWinters are based on an equiva-
lent ARIMA model in the case of the (N,N), (A,N) and (A,A) methods, assuming additive
errors. These prediction intervals are equivalent to the prediction intervals that arise from
the (A,N,N), (A,A,N) and (A,A,A) state space models. For the (A,M) method, the predic-
tion interval provided by predict appears to be based on Chatfield and Yar (1991) which
is an approximation to the true prediction interval arising from the (A,A,M) model. Pre-
diction intervals with multiplicative errors are not possible using the HoltWinters func-
tion.
The algorithm of Section 2 is applied to the same four time series. Unlike the exponential
smoothing algorithm, the ARIMA class of models assumes homoscedasticity which is not
always appropriate. Consequently, transformations are sometimes necessary. For these
four time series, we model the raw data for series (a)–(c), but the logged data for series
(d). The prediction intervals are back-transformed with the point forecasts to preserve
the probability coverage.
To apply this algorithm to the US net electricity generation time series uselec, we use the
following commands.
Figure 2: Four time series showing point forecasts and 80% & 95% prediction intervals obtained
using ARIMA models.
(a) US 10−year bonds yield (b) US net electricity generation
5000
8
Percentage per annum
Billion kwh
3000
6
5
1000
4
3
0 20 40 60 80 100 120 140 1950 1960 1970 1980 1990 2000 2010
Year Year
800 1000
500
Thousands of people
Thousands of cars
400
600
300
400
200
200
1980 1985 1990 1995 2000 2005 1985 1990 1995 2000 2005
Year Year
The function auto.arima() implements the algorithm of Section 2 and returns an object
of class Arima. The resulting forecasts are shown in Figure 2. The fitted models are as
follows:
The forecast package also contains the function arima() which is a wrapper to the func-
tion of the same name in the stats package. The arima() function in the forecast package
makes it easier to include a drift term when d + D = 1. (Setting include.mean=TRUE in
the arima() function from the stats package will only work when d + D = 0.)
The forecast() function is generic and has S3 methods for a wide range of time se-
ries models. It computes point forecasts and prediction intervals from the time series
model. Methods exist for models fitted using ets(), arima(), ar(), HoltWinters() and
StructTS().
In the latter four cases, there is also a predict() function which is intended to do much
the same thing. Unfortunately, the resulting objects from the predict function contain
different information in each case and so it is not possible to build generic functions
(such as plot and summary) for the results. So, instead, forecast() acts as a wrapper to
predict(), and packages the information obtained in a common format (the forecast
class).
There is also a method for a time series object. If a time series object is passed as the first
argument to forecast(), the function will produce forecasts based on the exponential
smoothing algorithm of Section 1.
The output from the forecast() function is an object of class “forecast”. Several other
functions in the forecast package also produce objects of this class, but they are not dis-
cussed here. An object of class forecast includes at least the following information:
• point forecasts;
• prediction intervals of specified coverage;
• the forecasting method used and information about the fitted model;
• residuals from the fitted model;
• one-step forecasts from the fitted model for the period of the observed data.
There are print, plot and summary methods for the forecast class. Figures 1
and 2 were produced using plot.forecast. Figure 3 shows the summary out-
put for the forecasts plotted in Figures 1(c) and 2(c). The in-sample error mea-
sures (defined in Hyndman and Koehler, 2006) for the two models are almost iden-
tical. Note that the information criteria are not comparable. The prediction inter-
vals are, by default, computed for 80% and 95% coverage, although other values are
possible if requested. Fan charts (Wallis, 1999) are possible using the combination
plot(forecast(model.object,fan=TRUE)).
4 Comparisons
There is a widespread myth that ARIMA models are more general than exponential
smoothing. This is not true. The two classes of models overlap. The linear exponen-
tial smoothing models are all special cases of ARIMA models—the equivalences are dis-
cussed in Hyndman et al. (2007). However, the non-linear exponential smoothing mod-
els have no equivalent ARIMA counterpart. On the other hand, there are many ARIMA
models which have no exponential smoothing counterpart. Thus, the two model classes
overlap and are complimentary; each has its strengths and weaknesses.
The exponential smoothing state space models are all non-stationary. Models with sea-
sonality or non-damped trend (or both) have two unit roots; all other models—that is,
non-seasonal models with either no trend or damped trend—have one unit root. It is
possible to define a stationary model with similar characteristics to exponential smooth-
ing, but this is not normally done. The philosophy of exponential smoothing is that the
world is non-stationary. So if a stationary model is required, ARIMA models are better.
One advantage of the exponential smoothing models is that they can be non-linear. So
> summary(forecast(etsfit))
Smoothing parameters:
alpha = 0.6063
gamma = 0.01
Initial states:
l = 343.4342
s = -1.4193 -44.9642 21.3933 24.9903
sigma: 25.5668
AIC: 1277.87
AICc: 1278.662
BIC: 1294.234
Forecasts:
Point Forecast Lo 80 Hi 80 Lo 95 Hi 95
2005 Q2 427.6845 394.9193 460.4497 377.5744 477.7945
2005 Q3 361.8133 323.4959 400.1308 303.2119 420.4148
2005 Q4 405.1787 361.8657 448.4917 338.9372 471.4202
2006 Q1 431.5437 383.8920 479.1954 358.6668 504.4207
2006 Q2 427.6845 376.0575 479.3115 348.7278 506.6412
2006 Q3 361.8133 306.4959 417.1307 277.2127 446.4140
2006 Q4 405.1787 346.2906 464.0668 315.1172 495.2403
2007 Q1 431.5437 369.3949 493.6925 336.4953 526.5921
> summary(forecast(arimafit))
Coefficients:
ar1 ar2 ar3 ma1 sar1 sar2 sma1
-0.9570 -0.4500 -0.3314 0.5784 0.6743 0.3175 -0.8364
s.e. 0.2063 0.1442 0.1149 0.2173 0.1649 0.1500 0.2151
Forecasts:
Point Forecast Lo 80 Hi 80 Lo 95 Hi 95
2005 Q2 420.3970 387.2903 453.5037 369.7647 471.0293
2005 Q3 375.4078 336.4292 414.3864 315.7952 435.0204
2005 Q4 407.6859 364.8897 450.4822 342.2347 473.1371
2006 Q1 441.5159 396.1285 486.9033 372.1018 510.9300
2006 Q2 425.1130 376.4140 473.8120 350.6343 499.5917
2006 Q3 377.9051 327.1692 428.6410 300.3113 455.4989
2006 Q4 408.1083 354.5331 461.6834 326.1722 490.0443
2007 Q1 441.1217 385.4706 496.7729 356.0106 526.2328
Figure 3: Example output from the summary method for the forecast class.
Hyndman and Khandakar: June 2007 25
Automatic time series forecasting: the forecast package for R
time series that exhibit non-linear characteristics including heteroscedasticity may be bet-
ter modelled using exponential smoothing state space models.
For seasonal data, there are many more ARIMA models than the 30 possible models in
the exponential smoothing class of Section 1. It may be thought that the larger model
class is advantageous. However, the results in Hyndman et al. (2002) show that the ex-
ponential smoothing models performed better than the ARIMA models for the seasonal
M3 competition data. (For the annual M3 data, the ARIMA models performed better.) In
a discussion of these results, Hyndman (2001) speculates that the larger model space of
ARIMA models actually harms forecasting performance because it introduces additional
uncertainty. The smaller exponential smoothing class is sufficiently rich to capture the
dynamics of almost all real business and economic time series.
References
Anderson, B. D. O. and J. B. Moore (1979) Optimal Filtering, Prentice-Hall, Englewood
Cliffs.
Bowerman, B. L., R. T. O’Connell and A. B. Koehler (2005) Forecasting, time series and
regression: an applied approach, Thomson Brooks/Cole, Belmont CA.
Brockwell, P. J. and R. A. Davis (1991) Time series: theory and methods, Springer-Verlag,
New York, 2nd ed.
Canova, F. and B. E. Hansen (1995) Are seasonal patterns constant over time? a test for
seasonal stability, Journal of Business and Economic Statistics, 13, 237–252.
Chatfield, C. and M. Yar (1991) Prediction intervals for multiplicative Holt-Winters, In-
ternational Journal of Forecasting, 7, 31–37.
Dickey, D. A. and W. A. Fuller (1981) Likelihood ratio statistics for autoregressive time
series with a unit root, Econometrica, 49, 1057–1071.
Durbin, J. and S. J. Koopman (2001) Time series analysis by state space methods, Oxford
University Press, Oxford.
Gardner, Jr, E. S. (1985) Exponential smoothing: The state of the art, Journal of Forecasting,
4, 1–28.
Gardner, Jr, E. S. and E. McKenzie (1985) Forecasting trends in time series, Management
Science, 31(10), 1237–1246.
Gómez, V. and A. Maravall (1998) Programs TRAMO and SEATS, instructions for the
users, Tech. rep., Direcciòn General de Anilisis y Programaciòn Presupuestaria, Minis-
terio de Economia y Hacienda, working paper 97001.
Hylleberg, S., R. Engle, C. Granger and B. Yoo (1990) Seasonal integration and cointegra-
tion, Journal of Econometrics, 44, 215–238.
Hyndman, R. J. (2001) It’s time to move from ‘what’ to ‘why’—comments on the M3-
competition, International Journal of Forecasting, 17(4), 567–570.
Hyndman, R. J. (2007) forecast: Forecasting functions for time series, R package version 1.05.
URL: http://www.robhyndman.info/Rlibrary/forecast/
Hyndman, R. J., M. Akram and B. C. Archibald (2007) The admissible parameter space
for exponential smoothing models, Annals of the Institute of Statistical Mathematics, to
appear.
Hyndman, R. J., M. L. King, I. Pitrun and B. Billah (2005a) Local linear forecasts using
cubic smoothing splines, Australian & New Zealand Journal of Statistics, 47(1), 87–99.
Hyndman, R. J., A. B. Koehler, J. K. Ord and R. D. Snyder (2005b) Prediction intervals for
exponential smoothing using two new classes of state space models, Journal of Forecast-
ing, 24, 17–37.
Hyndman, R. J., A. B. Koehler, R. D. Snyder and S. Grose (2002) A state space framework
for automatic forecasting using exponential smoothing methods, International Journal
of Forecasting, 18(3), 439–454.
Hyndman, R. J. and A. V. Kostenko (2007) Minimum sample size requirements for sea-
sonal forecasting models, Foresight: the International Journal of Applied Forecasting, 6,
12–15.
Kwiatkowski, D., P. C. Phillips, P. Schmidt and Y. Shin (1992) Testing the null hypothesis
of statioanrity against the alternative of a unit root, Journal of Econometrics, 54, 159–178.
Liu, L. M. (1989) Identification of seasonal ARIMA models using a filtering method, Com-
munications in Statistics, Part A — Theory and Methods, 18, 2279–2288.
Makridakis, S. and M. Hibon (2000) The M3-competition: Results, conclusions and im-
plications, International Journal of Forecasting, 16, 451–476.
Mélard, G. and J.-M. Pasteels (2000) Automatic ARIMA modeling including intervention,
using time series expert software, International Journal of Forecasting, 16, 497–508.
Ord, J. K., A. B. Koehler and R. D. Snyder (1997) Estimation and prediction for a class of
dynamic nonlinear statistical models, Journal of the American Statistical Association, 92,
1621–1629.
Ord, K. and S. Lowe (1996) Automatic forecasting, The American Statistician, 50(1), 88–94.
Reilly, D. (2000) The AUTOBOX system, International Journal of Forecasting, 16(4), 531–533.
Smith, J. and S. Yadav (1994) Forecasting costs incurred from unit differencing fraction-
ally integrated processes, International Journal of Forecasting, 10(4), 507–514.
Wallis, K. F. (1999) Asymmetric density forecasts of inflation and the Bank of England’s
fan chart, National Institute Economic Review, 167(1), 106–112.