Estimation of ARIMA models


Linear versus nonlinear least squares
Mean versus constant
Backforecasting


Linear versus nonlinear least squares

ARIMA models which include only AR terms are special cases of linear regression models, hence they can be fitted by ordinary least squares.


ARIMA models which include MA terms are similar to regression models, but can't be fitted by ordinary least squares:


"Mean" versus "constant

The "mean" and the "constant" in ARIMA model-fitting results are different numbers whenever the model includes AR terms. Suppose that you fit an ARIMA model to Y in which p is the number of autoregressive terms. (Assume for convenience that there are no MA terms.) Let y denote the differenced (stationarized) version of Y--e.g., y(t) = Y(t)-Y(t-1) if one nonseasonal difference was used. Then the AR(p) forecasting equation for y is:

This is just an ordinary multiple regression model in which "mu" is the constant term, "phi-1" is the coefficient of the first lag of y, and so on.

Now, internally, the software converts this slope-intercept form of the regression equation to an equivalent form in terms of deviations from the mean. Let m denote the mean of the stationarized series y. Then the p-order autoregressive equation can be written in terms of deviations from the mean as:

By collecting all the constant terms in this equation, we see it is equivalent to the "mu" form of the equation if:

The software actually estimates "m" (along with the other model parameters) and reports this as the MEAN in the model-fitting results, along with its standard error and t-statistic, etc. The CONSTANT (i.e., "mu") is then calculated according to the preceding formula, i.e.,

CONSTANT = MEAN*(1 - sum of AR coefficients)

If the model does not contain any AR terms, the MEAN and the CONSTANT are identical.

In a model with one order of nonseasonal differencing (only), the MEAN is the trend factor (average period-to-period change). In a model with one order of seasonal differencing (only), the MEAN is the annual trend factor (average year-to-year change).


"Backforecasting"