Polynomial Distributed-Lag (PDL) Model

Firstly, download the excel file called " sales_inventory" from this page.

Then create a Workfile,  import the data from the excel data file and specify the variables as m1, m2, irate, cpi and ip as follow box.

Firstly, we postulate the distributed-lag model (Example of Table 17.3 in Gujarati (1995) textbook) as:

Yt = £\ + £]0Xt + £]1Xt-1 + £]2Xt-2 + £]3Xt-3 + et         

Also, assume the £]i can be approximated by a second-degree of polynomial in i, the length of the lag, as: 

£]i = a0 + a1i + a2i2

It means    £]0 = a0 

                     £]1 = a0 + a1 + a2

                £]2 = a0 + a12 + a24

                £]3 = a0 + a13 + a29

Through substituting into distributed-lag model and transformation, it becomes  

Yt =£\ + a0Xt + (a0 + a1 + a2)Xt-1 + (a0 + a12 + a24)Xt-2 + (a0 + a13 + a29)Xt-3 + et  

Yt =£\ + a0(Xt + Xt-1+ Xt-2+ Xt-3) + a1(Xt-1+ 2Xt-2 + 3Xt-3) + a2 (Xt-1+ 4Xt-2+ 9Xt-3 + et  

Yt =£\ + a0Z0t + a1Z1t + a2Z2t + et  

where Zi variables are constructed by using the various lagged values of Xi

                Z0t = Xt + Xt-1+ Xt-2+ Xt-3
            Z1t = Xt-1+ 2Xt-2+ 3Xt-3
             Z2t = Xt-1+ 4Xt-2+ 9Xt-3

So to run the regression of  Yt =£\ + a0Z0t + a1Z1t + a2Z2t + et  

From the estimated coefficients of Zi, given from the above we can calculate the estimated coefficients £]i 's are:

Estimated £]0 = 0.661248

Estimated £]1 = (0.661248 + 0.902049 - 0.43215) = 1.13114

Estimated £]2 = (0.661248 + 2x0.902049 - 4x0.43215) = 0.7364

Estimated £]3 = (0.661248 + 3x0.902049 - 9x0.43215) = -0.5220

Therefore, the estimated PDL model is:

Estimated Y = -7140.754 + 0.66125Xt + 1.13114Xt-1 + 0.73673Xt-2 - 0.5220Xt-3

Since EVIEWS also provides a command of PDL function to run the polynomial distributed-lag regression equation directly. We can simply specify the regression equation with the command PDL(x, k, d)  (where x is the independent variable, k is the lags in the model, d is the degree of polynomial) on the right hand side as: 

Where the "SALES" is the independent variable, "3" is the number of independent variable's lagged terms and "2" is the second-degree of polynomial. 

The result of PDL regression is:

As blue circled coefficients of the PDL0, PDL02, and PDL03, they indicate the variables Z0, Z1 and Z2, respectively. And the more important of this result is on the bottom part with red circle where indicate the estimated coefficients of £]i which are the original coefficients of the distributed-lag model. Thus, the estimated polynomial distribution model is:

Estimated Y = -7140.754 + 1.13114Z0t + 0.03773Z1t - 0.0432Z2t

Estimated Y = -7140.754 + 0.66125Xt + 1.13114Xt-1 + 0.73673Xt-2 - 0.5220Xt-3

¡@

(Note: The calculations of Zi in EVIEWS are based on the followings:

£]i = a0 + a1(i - c) + a2(i - c )2 + a3(i - c )3 + ... + ap(i - c )p

where c is a pre-specified constant given by  c = p/2 if p is even, and c = (p-1)/2 if p is odd, therefore

Z1 = Xt + Xt-1 + ... + Xt-k

Z2 = -cXt + (1-c)Xt-1 + ... + (k-c)Xt-k

...

Zp+1 = (-c)pXt + (1-c)pXt-1 + ... + (k-c)pXt-k

Thus the estimation result is different to the result that is obtained from the OLS regression of Y against all Zi, but the final estimated coefficients £]i are the same.)

The End