Main Content

Create Regression Models with ARIMA Errors

Default Regression Model with ARIMA Errors Specifications

Regression models with ARIMA errors have the following form (in lag operator notation):

yt=c+Xtβ+uta(L)A(L)(1L)D(1Ls)ut=b(L)B(L)εt,

where

  • t = 1,...,T.

  • yt is the response series.

  • Xt is row t of X, which is the matrix of concatenated predictor data vectors. That is, Xt is observation t of each predictor series.

  • c is the regression model intercept.

  • β is the regression coefficient.

  • ut is the disturbance series.

  • εt is the innovations series.

  • Ljyt=ytj.

  • a(L)=(1a1L...apLp), which is the degree p, nonseasonal autoregressive polynomial.

  • A(L)=(1A1L...ApsLps), which is the degree ps, seasonal autoregressive polynomial.

  • (1L)D, which is the degree D, nonseasonal integration polynomial.

  • (1Ls), which is the degree s, seasonal integration polynomial.

  • b(L)=(1+b1L+...+bqLq), which is the degree q, nonseasonal moving average polynomial.

  • B(L)=(1+B1L+...+BqsLqs), which is the degree qs, seasonal moving average polynomial.

For simplicity, use the shorthand notation Mdl = regARIMA(p,D,q) to specify a regression model with ARIMA(p,D,q) errors, where p, D, and q are nonnegative integers. Mdl has the following default properties.

Property NameProperty Data Type
ARLength p cell vector of NaNs
BetaEmpty vector [] of regression coefficients, corresponding to the predictor series
DNonnegative scalar, corresponding to D
Distribution"Gaussian", corresponding to the distribution of εt
InterceptNaN, corresponding to c
MALength q cell vector of NaNs
PNumber of AR terms plus degree of integration, p + D
QNumber of MA terms, q
SAREmpty cell vector
SMAEmpty cell vector
VarianceNaN, corresponding to the variance of εt
Seasonality0, corresponding to s

If you specify nonseasonal ARIMA errors, then

  • The properties D and Q are the inputs D and q, respectively.

  • Property P = p + D, which is the degree of the compound, nonseasonal autoregressive polynomial. In other words, P is the degree of the product of the nonseasonal autoregressive polynomial, a(L) and the nonseasonal integration polynomial, (1 – L)D.

The values of properties P and Q indicate how many presample observations the software requires to initialize the time series.

You can modify the properties of Mdl using dot notation. For example, Mdl.Variance = 0.5 sets the innovation variance to 0.5.

For maximum flexibility in specifying a regression model with ARIMA errors, use name-value pair arguments to, for example, set each of the autoregressive parameters to a value, or specify multiplicative seasonal terms. For example, Mdl = regARIMA('AR',{0.2 0.1}) defines a regression model with AR(2) errors, and the coefficients are a1 = 0.2 and a2 = 0.1.

Specify regARIMA Models Using Name-Value Pair Arguments

You can only specify the nonseasonal autoregressive and moving average polynomial degrees, and nonseasonal integration degree using the shorthand notation regARIMA(p,D,q). Some tasks, such as forecasting and simulation, require you to specify values for parameters. You cannot specify parameter values using shorthand notation. For maximum flexibility, use name-value pair arguments to specify regression models with ARIMA errors.

The nonseasonal ARIMA error model might contain the following polynomials:

  • The degree p autoregressive polynomial a(L) = 1 – a1La2L2 –...– apLp. The eigenvalues of a(L) must lie within the unit circle (i.e., a(L) must be a stable polynomial).

  • The degree q moving average polynomial b(L) = 1 + b1L + b2L2 +...+ bqLq. The eigenvalues of b(L) must lie within the unit circle (i.e., b(L) must be an invertible polynomial).

  • The degree D nonseasonal integration polynomial is (1 – L)D.

The following table contains the name-value pair arguments that you use to specify the ARIMA error model (i.e., a regression model with ARIMA errors, but without a regression component and intercept):

yt=uta(L)(1L)D=b(L)εt.(1)

Name-Value Pair Arguments for Nonseasonal ARIMA Error Models

NameCorresponding Model Term(s) in Equation 1When to Specify
ARNonseasonal AR coefficients: a1, a2,...,ap
  • To set equality constraints for the AR coefficients. For example, to specify the AR coefficients in the ARIMA error model
    ut=0.8ut10.2ut2+εt,
    specify 'AR',{0.8,-0.2}.

  • You only need to specify the nonzero elements of AR. If the nonzero coefficients are at nonconsecutive lags, specify the corresponding lags using ARLags.

  • The coefficients must correspond to a stable AR polynomial.

ARLagsLags corresponding to nonzero, nonseasonal AR coefficients
  • ARLags is not a model property.
    Use this argument as a shortcut for specifying AR when the nonzero AR coefficients correspond to nonconsecutive lags. For example, to specify nonzero AR coefficients at lags 1 and 12, e.g.,
    ut=a1ut1+a2ut12+εt,
    specify 'ARLags',[1,12].

  • Use AR and ARLags together to specify known nonzero AR coefficients at nonconsecutive lags. For example, if in the given AR(12) error model with a1 = 0.6 and a12 = –0.3, then specify 'AR',{0.6,-0.3},'ARLags',[1,12].

DDegree of nonseasonal differencing, D
  • To specify a degree of nonseasonal differencing greater than zero. For example, to specify one degree of differencing, specify 'D',1.

  • By default, D has value 0 (meaning no nonseasonal integration).

DistributionDistribution of the innovation process, εt
  • Use this argument to specify a Student’s t distribution. By default, the innovation distribution is "Gaussian". For example, to specify a t distribution with unknown degrees of freedom, specify 'Distribution','t'.

  • To specify a t innovation distribution with known degrees of freedom, assign Distribution a structure with fields Name and DoF. For example, for a t distribution with nine degrees of freedom, specify 'Distribution',struct('Name','t','DoF',9).

MANonseasonal MA coefficients: b1, b2,...,bq
  • To set equality constraints for the MA coefficients. For example, to specify the MA coefficients in the ARIMA error model
    ut=εt+0.5εt1+0.2εt2,
    specify 'MA',{0.5,0.2}.

  • You only need to specify the nonzero elements of MA. If the nonzero coefficients are at nonconsecutive lags, specify the corresponding lags using MALags.

  • The coefficients must correspond to an invertible MA polynomial.

MALagsLags corresponding to nonzero, nonseasonal MA coefficients
  • MALags is not a model property.

  • Use this argument as a shortcut for specifying MA when the nonzero MA coefficients correspond to nonconsecutive lags. For example, to specify nonzero MA coefficients at lags 1 and 4, e.g.,
    ut=εt+b1εt1+b4εt4,
    specify 'MALags',[1,4].

  • Use MA and MALags together to specify known nonzero MA coefficients at nonconsecutive lags. For example, if in the given MA(4) error model b1 = 0.5 and b4 = 0.2, specify 'MA',{0.4,0.2},'MALags',[1,4].

VarianceScalar variance, σ2, of the innovation process, εt

To set equality constraints for σ2. For example, for an ARIMA error model with known innovation variance 0.1, specify 'Variance',0.1. By default, Variance has value NaN.

Use the name-value pair arguments in the following table in conjunction with those in Name-Value Pair Arguments for Nonseasonal ARIMA Error Models to specify the regression components of the regression model with ARIMA errors:

yt=c+Xtβ+uta(L)(1L)D=b(L)εt.(2)

Name-Value Pair Arguments for the Regression Component of the regARIMA Model

NameCorresponding Model Term(s) in Equation 2When to Specify
BetaRegression coefficient values corresponding to the predictor series, β
  • Use this argument to specify the values of the coefficients of the predictor series. For example, use 'Beta',[0.5 7 -2] to specify
    β=[0.572].

  • By default, Beta is an empty vector, [].

InterceptIntercept term for the regression model, c
  • To set equality constraints for c. For example, for a model with no intercept term, specify 'Intercept',0.

  • By default, Intercept has value NaN.

If the time series has seasonality s, then

  • The degree ps seasonal autoregressive polynomial is A(L) = 1 – A 1LA2L2 –...– ApsLps.

  • The degree qs seasonal moving average polynomial is B(L) 1 + B 1L + B2L2 +...+ BqsLqs.

  • The degree s seasonal integration polynomial is (1 – Ls).

Use the name-value pair arguments in the following table in conjunction with those in tables Name-Value Pair Arguments for Nonseasonal ARIMA Error Models and Name-Value Pair Arguments for the Regression Component of the regARIMA Model to specify the regression model with multiplicative seasonal ARIMA errors:

yt=c+Xtβ+uta(L)(1L)DA(L)(1Ls)ut=b(L)B(L)εt.(3)

Name-Value Pair Arguments for Seasonal ARIMA Models

ArgumentCorresponding Model Term(s) in Equation 3When to Specify
SARSeasonal AR coefficients: A1, A2,...,Aps
  • To set equality constraints for the seasonal AR coefficients.

  • Use SARLags to specify the lags of the nonzero seasonal AR coefficients. Specify the lags associated with the seasonal polynomials in the periodicity of the observed data (e.g., 4, 8,... for quarterly data, or 12, 24,... for monthly data), and not as multiples of the seasonality (e.g., 1, 2,...).
    For example, to specify the ARIMA error model
    (10.8L)(10.2L12)ut=εt,
    specify 'AR',0.8,'SAR',0.2,'SARLags',12.

  • The coefficients must correspond to a stable seasonal AR polynomial.

SARLagsLags corresponding to nonzero seasonal AR coefficients, in the periodicity of the responses
  • SARLags is not a model property.

  • Use this argument when specifying SAR to indicate the lags of the nonzero seasonal AR coefficients. For example, to specify the ARIMA error model
    (1a1L)(1A12L12)ut=εt,
    specify 'ARLags',1,'SARLags',12.

SMASeasonal MA coefficients: B1, B2,...,Bqs
  • To set equality constraints for the seasonal MA coefficients.

  • Use SMALags to specify the lags of the nonzero seasonal MA coefficients. Specify the lags associated with the seasonal polynomials in the periodicity of the observed data (e.g., 4, 8,... for quarterly data, or 12, 24,... for monthly data), and not as multiples of the seasonality (e.g., 1, 2,...).
    For example, to specify the ARIMA error model
    ut=(1+0.6L)(1+0.2L4)εt,
    specify 'MA',0.6,'SMA',0.2,'SMALags',4.

  • The coefficients must correspond to an invertible seasonal MA polynomial.

SMALagsLags corresponding to the nonzero seasonal MA coefficients, in the periodicity of the responses
  • SMALags is not a model property.

  • Use this argument when specifying SMA to indicate the lags of the nonzero seasonal MA coefficients. For example, to specify the model
    ut=(1+b1L)(1+B4L4)εt,
    specify 'MALags',1,'SMALags',4.

SeasonalitySeasonal periodicity, s
  • To specify the degree of seasonal integration s in the seasonal differencing polynomial Δs = 1 – Ls. For example, to specify the periodicity for seasonal integration of quarterly data, specify 'Seasonality',4.

  • By default, Seasonality has value 0 (meaning no periodicity nor seasonal integration).

Note

You cannot assign values to the properties P and Q. For multiplicative ARIMA error models,

  • regARIMA sets P equal to p + D + ps + s.

  • regARIMA sets Q equal to q + qs

Specify Linear Regression Models Using Econometric Modeler App

You can specify the predictor variables in the regression component, and the error model lag structure and innovation distribution, using the Econometric Modeler app. The app treats all coefficients as unknown and estimable.

At the command line, open the Econometric Modeler app.

econometricModeler

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

In the app, you can see all supported models by selecting a time series variable for the response in the Time Series pane. Then, on the Econometric Modeler tab, in the Models section, click the arrow to display the models gallery.

This is a screen shot of the Models drop-down with multiple options for ARMA/ARIMA, GARCH, and Regression models. There are buttons below the heading for each general category of model that correspond to specific supported model types.

The Regression Models section contains supported regression models. To specify a multiple linear regression (MLR) model, select MLR. To specify regression models with ARMA errors, select RegARMA.

After you select a model, the app displays the Type Model Parameters dialog box, where Type is the model type. This figure shows the RegARMA Model Parameters dialog box.

Screen shot of the regARMA Model Parameters dialog box showing parameter settings. The "Include Intercept" check box is selected. "Details". "Estimate", and "Cancel" buttons are at the bottom right corner of the dialog box.

Adjustable parameters depend on the model Type. In general, adjustable parameters include:

  • Predictor variables for the linear regression component, listed in the Predictors section.

    • For regression models with ARMA errors, you must include at least one predictor in the model. To include a predictor, select the corresponding check box in the Include? column.

    • For MLR models, you can clear all check boxes in the Include? column. In this case, you can specify a constant mean model (intercept-only model) by selecting the Include Intercept check box. Or, you can specify an error-only model by clearing the Include Intercept check box.

  • The innovation distribution and nonseasonal lags for the error model, for regression models with ARMA errors.

As you adjust parameter values, the equation in the Model Equation section changes to match your specifications. Adjustable parameters correspond to input and name-value pair arguments described in the previous sections and in the regARIMA reference page.

For more details on specifying models using the app, see Fitting Models to Data and Specifying Univariate Lag Operator Polynomials Interactively.

See Also

Apps

Objects

Related Examples

More About