The VARMAX Procedure

TEST Statement

TEST restriction, …, restriction ;

The TEST statement performs the Wald test for the joint linear hypothesis that is specified in the statement. Each restriction specifies a linear hypothesis to be tested. If you specify more than one restriction, separate them with commas. Specify the restrictions in the same manner as in the RESTRICT statement. For information about how to define restriction by using matrix expressions, operators, and functions, see the section RESTRICT Statement. You can specify any number of TEST statements.

To use the TEST statement, you need to know the form of the model. If you do not specify the P=, Q=, or XLAG= option or the GARCH statement, then the TEST statement is not applicable.

For information about the Wald test, see the section Granger Causality Test.

The following is an example of the TEST statement for 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;

After estimating the parameters, the TEST statement tests the null hypothesis that AR(1,1,2)=0 and AR(2,1,2)=0. Like the RESTRICT statement, the preceding TEST statement can be abbreviated as follows:

test AR(1,1,2) = AR(2,1,2) = 0;

or

test AR(1,1,2), AR(2,1,2);

Note that the following statements are different from the preceding statement:

test AR(1,1,2);
test AR(2,1,2);

These two TEST statements are to test two null hypotheses separately: one is AR(1,1,2)=0, and the other is AR(2,1,2)=0.