|
Chapter Contents |
Previous |
Next |
| The GLM Procedure |
Caution: The GLM 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 can use the RANDOM statement and inspect the expected mean squares, or you can use the TEST option of the RANDOM statement.
You may 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.
By default, the sum of squares type for all hypothesis sum of squares and error sum of squares is the highest type computed in the model. If the hypothesis type or error type is to be another type that was computed in the model, you should specify one or both of the following options after a slash.
This example illustrates the TEST statement with a split-plot model:
proc glm;
class a b c;
model y=a b(a) c a*c b*c(a);
test h=a e=b(a)/ htype=1 etype=1;
test h=c a*c e=b*c(a) / htype=1 etype=1;
run;
|
Chapter Contents |
Previous |
Next |
Top |
Copyright © 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.