The simple finite distributed lag model is expressed in the form
![\[ y_{t} = {\alpha } + \sum _{i=0}^{p}{{\beta }_{i}x_{t-i}} + {\epsilon }_{t} \]](images/etsug_pdlreg0029.png)
When the lag length (p) is long, severe multicollinearity can occur. Use the Almon or polynomial distributed lag model to avoid this problem, since the relatively low-degree d (
) polynomials can capture the true lag distribution. The lag coefficient can be written in the Almon polynomial lag
![\[ {\beta }_{i} = {\alpha }_{0}^{*} + \sum _{j=1}^{d}{{\alpha }_{j}^{*} i^{j}} \]](images/etsug_pdlreg0031.png)
Emerson (1968) proposed an efficient method of constructing orthogonal polynomials from the preceding polynomial equation as
![\[ {\beta }_{i} = {\alpha }_{0} + \sum _{j=1}^{d}{{\alpha }_{j} f_{j}(i)} \]](images/etsug_pdlreg0032.png)
where
is a polynomial of degree j in the lag length i. The polynomials
are chosen so that they are orthogonal:
![\[ \sum _{i=1}^{n}{w_{i}f_{j}(i)f_{k}(i)} = \begin{cases} 1 & \mr{if} j = k \\ 0 & \mr{if} j {\neq } k \end{cases} \]](images/etsug_pdlreg0033.png)
where
is the weighting factor, and
. PROC PDLREG uses the equal weights (
) for all i. To construct the orthogonal polynomials, the following recursive relation is used:
![\[ f_{j}(i) = (A_{j}i + B_{j})f_{j-1}(i) - C_{j}f_{j-2}(i) j=1,{\ldots }, d \]](images/etsug_pdlreg0037.png)
The constants
, and
are determined as follows:

where
and
.
PROC PDLREG estimates the orthogonal polynomial coefficients,
, to compute the coefficient estimate of each independent variable (X) with distributed lags. For example, if an independent
variable is specified as X(9,3), a third-degree polynomial is used to specify the distributed lag coefficients. The third-degree
polynomial is fit as a constant term, a linear term, a quadratic term, and a cubic term. The four terms are constructed to
be orthogonal. In the output produced by the PDLREG procedure for this case, parameter estimates with names X**0, X**1, X**2,
and X**3 correspond to
, and
, respectively. A test using the t statistic and the approximate p-value ("Approx Pr
") associated with X**3 can determine whether a second-degree polynomial rather than a third-degree polynomial is appropriate.
The estimates of the 10 lag coefficients associated with the specification X(9,3) are labeled X(0), X(1), X(2), X(3), X(4),
X(5), X(6), X(7), X(8), and X(9).