|
Chapter Contents |
Previous |
Next |
| The ANOVA Procedure |
Caution: The ANOVA procedure does not check any of the assumptions underlying the F statistic. When you specify a TEST statement, you assume sole responsibility for the validity of the F statistic produced. To help validate a test, you may want to use the GLM procedure with the RANDOM statement and inspect the expected mean squares. In the GLM procedure, you can also use the TEST option in the RANDOM statement.
You can use as many TEST statements as you want, provided that they appear after the MODEL statement.
You can specify the following terms in the TEST statement.
The following example uses two TEST statements and is appropriate for analyzing a split-plot design.
proc anova;
class a b c;
model y=a|b(a)|c;
test h=a e=b(a);
test h=c a*c e=b*c(a);
run;
|
Chapter Contents |
Previous |
Next |
Top |
Copyright © 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.