|
Chapter Contents |
Previous |
Next |
| The VARMAX Procedure |


In Figure 4.19, you can see the
coefficients XL_0_1_2, AR_1_1_2, and AR_1_3_2
are insignificant.
The following statements restrict the
coefficients of
for
the VARX(1,0) model.
proc varmax data=grunfeld;
model y1-y3 = x1 x2 / p=1;
restrict XL(0,1,2)=0, AR(1,1,2)=0, AR(1,3,2)=0;
run;
The output in Figure 4.20 shows that three parameters
,
, and
are replaced by the restricted values.
| ||||||||||||||||||||||||||
The output in Figure 4.21 shows the estimates of the
Lagrangian parameters and their significances.
You cannot reject the null hypotheses
,
, and
with the 0.05 significance level.
The TEST statement in the following example tests
and
for
the VARX(1,0) model:
proc varmax data=grunfeld;
model y1-y3 = x1 x2/ p=1;
test AR(1,3,1)=0;
test XL(0,1,2)=0, AR(1,1,2)=0, AR(1,3,2)=0;
run;
| |||||||||||||||||
The output in Figure 4.22 shows that
the first column in the output
is the index corresponding to each TEST statement;
you can reject the hypothesis test
at the 0.05 significance level;
you cannot reject the
joint hypothesis test
at the 0.05 significance level.
|
Chapter Contents |
Previous |
Next |
Top |
Copyright © 2000 by SAS Institute Inc., Cary, NC, USA. All rights reserved.