Chapter Contents |
Previous |
Next |
The ARIMA Procedure |
How an input series enters the model is called its transfer function. Thus, ARIMA models with input series are sometimes referred to as transfer function models.
In the preceding regression and intervention model examples, the transfer function is a single scale parameter. However, you can also specify complex transfer functions composed of numerator and denominator polynomials in the backshift operator. These transfer functions operate on the input series in the same way that the ARMA specification operates on the error term.
proc arima data=a; identify var=sales crosscorr=price; estimate input=( (1 2 3) price ); run;
These statements estimate the model
This example models the effect of PRICE on SALES as a linear function of the current and three most recent values of PRICE. It is equivalent to a multiple linear regression of SALES on PRICE, LAG(PRICE), LAG2(PRICE), and LAG3(PRICE).
This is an example of a transfer function with one numerator factor. The numerator factors for a transfer function for an input series are like the MA part of the ARMA model for the noise series.
To specify transfer functions with denominator factors, place the denominator factors after a slash (/) in the INPUT= option. For example, the following statements estimate the PRICE effect as an infinite distributed lag model with exponentially declining weights:
proc arima data=a; identify var=sales crosscorr=price; estimate input=( / (1) price ); run;
The transfer function specified by these statements is as follows:
This transfer function also can be written in the following equivalent form:
This transfer function can be used with intervention inputs. When it is used with a pulse function input, the result is an intervention effect that dies out gradually over time. When it is used with a step function input, the result is an intervention effect that increases gradually to a limiting value.
use an INPUT= option in the ESTIMATE statement of the form
input=( k $ ( -lags ) / ( -lags) x)
See the section "Specifying Inputs and Transfer Functions" later in this chapter for more information.
For the cross-correlation function to be meaningful, the input and response series must be filtered with a prewhitening model for the input series. See the section "Prewhitening" later in this chapter for more information on this issue.
Chapter Contents |
Previous |
Next |
Top |
Copyright © 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.