Main Content

Create Autoregressive Integrated Moving Average Models

These examples show how to create various autoregressive integrated moving average (ARIMA) models by using the arima function.

Default ARIMA Model

This example shows how to use the shorthand arima(p,D,q) syntax to specify the default ARIMA(p, D, q) model,

ΔDyt=c+ϕ1ΔDyt-1++ϕpΔDyt-p+εt+θ1εt-1++θqεt-q,

where ΔDyt is a Dth differenced time series. You can write this model in condensed form using lag operator notation:

ϕ(L)(1-L)Dyt=c+θ(L)εt.

By default, all parameters in the created model object have unknown values, and the innovation distribution is Gaussian with constant variance.

Specify the default ARIMA(1,1,1) model:

Mdl = arima(1,1,1)
Mdl = 
  arima with properties:

     Description: "ARIMA(1,1,1) Model (Gaussian Distribution)"
      SeriesName: "Y"
    Distribution: Name = "Gaussian"
               P: 2
               D: 1
               Q: 1
        Constant: NaN
              AR: {NaN} at lag [1]
             SAR: {}
              MA: {NaN} at lag [1]
             SMA: {}
     Seasonality: 0
            Beta: [1×0]
        Variance: NaN

The output shows that the created model object, Mdl, has NaN values for all model parameters: the constant term, the AR and MA coefficients, and the variance. You can modify the created model using dot notation, or input it (along with data) to estimate.

The property P has value 2 (p + D). This is the number of presample observations needed to initialize the AR model.

ARIMA Model with Known Parameter Values

This example shows how to specify an ARIMA(p, D, q) model with known parameter values. You can use such a fully specified model as an input to simulate or forecast.

Specify the ARIMA(2,1,1) model

Δyt=0.4+0.8Δyt-1-0.3Δyt-2+εt+0.5εt-1,

where the innovation distribution is Student's t with 10 degrees of freedom, and constant variance 0.15.

tdist = struct('Name','t','DoF',10);
Mdl = arima('Constant',0.4,'AR',{0.8,-0.3},'MA',0.5,...
    'D',1,'Distribution',tdist,'Variance',0.15)
Mdl = 
  arima with properties:

     Description: "ARIMA(2,1,1) Model (t Distribution)"
      SeriesName: "Y"
    Distribution: Name = "t", DoF = 10
               P: 3
               D: 1
               Q: 1
        Constant: 0.4
              AR: {0.8 -0.3} at lags [1 2]
             SAR: {}
              MA: {0.5} at lag [1]
             SMA: {}
     Seasonality: 0
            Beta: [1×0]
        Variance: 0.15

The name-value pair argument D specifies the degree of nonseasonal integration (D).

All parameter values are specified, that is, no object property is NaN-valued.

Specify ARIMA Model Using Econometric Modeler App

In the Econometric Modeler app, you can specify the lag structure, presence of a constant, and innovation distribution of an ARIMA(p,D,q) model by following these steps. All specified coefficients are unknown but estimable parameters.

  1. At the command line, open the Econometric Modeler app.

    econometricModeler

    Alternatively, open the app from the apps gallery (see Econometric Modeler).

  2. In the Time Series pane, select the response time series to which the model will be fit.

  3. On the Econometric Modeler tab, in the Models section, click ARIMA. To create ARIMAX models, see Create ARIMA Models That Include Exogenous Covariates.

    The ARIMA Model Parameters dialog box appears.

    The ARIMA Model Parameters dialog box has the "Lag Order" tab selected. Autoregressive Order, Degree of Integration, and Moving Average Order are all set to zero. The check box next-to "Include Constant Term" is selected. The Model Equation section is at the bottom.

  4. Specify the lag structure. To specify an ARIMA(p,D,q) model that includes all AR lags from 1 through p and all MA lags from 1 through q, use the Lag Order tab. For the flexibility to specify the inclusion of particular lags, use the Lag Vector tab. For more details, see Specifying Univariate Lag Operator Polynomials Interactively. Regardless of the tab you use, you can verify the model form by inspecting the equation in the Model Equation section.

For example:

  • To specify an ARIMA(3,1,2) model that includes a constant, includes all consecutive AR and MA lags from 1 through their respective orders, and has a Gaussian innovation distribution:

    1. Set Degree of Integration to 1.

    2. Set Autoregressive Order to 3.

    3. Set Moving Average Order to 2.

  • To specify an ARIMA(3,1,2) model that includes all AR and MA lags from 1 through their respective orders, has a Gaussian distribution, but does not include a constant:

    1. Set Degree of Integration to 1.

    2. Set Autoregressive Order to 3.

    3. Set Moving Average Order to 2.

    4. Clear the Include Constant Term check box.

  • To specify an ARIMA(8,1,4) model containing nonconsecutive lags

    (1ϕ1Lϕ4L4ϕ8L8)(1L)yt=(1+θ1L1+θ4L4)εt,

    where εt is a series of IID Gaussian innovations:

    1. Click the Lag Vector tab.

    2. Set Degree of Integration to 1.

    3. Set Autoregressive Lags to 1 4 8.

    4. Set Moving Average Lags to 1 4.

    5. Clear the Include Constant Term check box.

    The ARIMA Model Parameters dialog box has the "Lag Vector" tab selected. Autoregressive Lags is set to 1 4 8, Degree of Integration is 1, and Moving Average Lags set to 1 4. The check box next-to "Include Constant Term" is unselected. The Model Equation section is at the bottom.

  • To specify an ARIMA(3,1,2) model that includes all consecutive AR and MA lags through their respective orders and a constant term, and has t-distribution innovations:

    1. Set Degree of Integration to 1.

    2. Set Autoregressive Order to 3.

    3. Set Moving Average Order to 2.

    4. Click the Innovation Distribution button, then select t.

    The degrees of freedom parameter of the t distribution is an unknown but estimable parameter.

After you specify a model, click Estimate to estimate all unknown parameters in the model.

What Are ARIMA Models?

The autoregressive integrated moving average (ARIMA) process generates nonstationary series that are integrated of order D, denoted I(D). A nonstationary I(D) process is one that can be made stationary by taking D differences. Such processes are often called difference-stationary or unit root processes.

A series that you can model as a stationary ARMA(p,q) process after being differenced D times is denoted by ARIMA(p,D,q). The form of the ARIMA(p,D,q) model in Econometrics Toolbox™ is

ΔDyt=c+ϕ1ΔDyt1++ϕpΔDytp+εt+θ1εt1++θqεtq,(1)
where ΔDyt denotes a Dth differenced time series, and εt is an uncorrelated innovation process with mean zero.

In lag operator notation, Liyt=yti. You can write the ARIMA(p,D,q) model as

ϕ*(L)yt=ϕ(L)(1L)Dyt=c+θ(L)εt.(2)
Here, ϕ*(L) is an unstable AR operator polynomial with exactly D unit roots. You can factor this polynomial as ϕ(L)(1L)D, whereϕ(L)=(1ϕ1LϕpLp) is a stable degree p AR lag operator polynomial (with all roots lying outside the unit circle). Similarly, θ(L)=(1+θ1L++θqLq) is an invertible degree q MA lag operator polynomial (with all roots lying outside the unit circle).

The signs of the coefficients in the AR lag operator polynomial, ϕ(L), are opposite to the right side of Equation 1. When specifying and interpreting AR coefficients in Econometrics Toolbox, use the form in Equation 1.

Note

In the original Box-Jenkins methodology, you difference an integrated series until it is stationary before modeling. Then, you model the differenced series as a stationary ARMA(p,q) process [1]. Econometrics Toolbox fits and forecasts ARIMA(p,D,q) processes directly, so you do not need to difference data before modeling (or backtransform forecasts).

References

[1] Box, George E. P., Gwilym M. Jenkins, and Gregory C. Reinsel. Time Series Analysis: Forecasting and Control. 3rd ed. Englewood Cliffs, NJ: Prentice Hall, 1994.

See Also

Apps

Objects

Functions

Related Topics