|
Chapter Contents |
Previous |
Next |
| The Four Types of Estimable Functions |
Reduction notation can be used to represent
differences in Sums of Squares for two models.
The notation
denotes the complete
main effects model for effects A, B, and C.
The notation

In other words, this notation represents the differences in Model SS produced by
proc glm;
class a b c;
model y=a b c;
run;
and
proc glm;
class b c;
model y=b c;
run;
As another example, consider a regression
equation with four independent variables.
The notation
denotes the differences in Model SS between


model y=x1 x2 x3 x4;
and
model y=x1 x2;
|
Chapter Contents |
Previous |
Next |
Top |
Copyright © 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.