|
Chapter Contents |
Previous |
Next |
| The VARMAX Procedure |
To use the TEST statement, you need to know the form of the model. If you do not specify any order of the model, the TEST statement is not applicable.
See the "Granger-Causality Test" section for the Wald test.
The following is an example of the TEST statement. In case of a bivariate (k=2) VAR(2) model,
proc varmax data=one;
model y1 y2 / p=2;
test AR(1,1,2)=0, AR(2,1,2)=0;
run;
|
Chapter Contents |
Previous |
Next |
Top |
Copyright © 2000 by SAS Institute Inc., Cary, NC, USA. All rights reserved.