Example (MANOVA: Univariate command)
MANOVA YIELD BY SEED(1,4) FERT(1,3) WITH RAINFALL
/PRINT=CELLINFO(MEANS) PARAMETERS(ESTIM)
/DESIGN.
- YIELD is the dependent variable; SEED (with values 1, 2, 3, and 4) and FERT (with values 1, 2, and 3) are factors; RAINFALL is a covariate.
- The PRINT subcommand requests the means of the dependent variable for each cell and the default deviation parameter estimates.
- The DESIGN subcommand
requests the default design, a full factorial model. This subcommand
could have been omitted or could have been specified in full as:
/DESIGN = SEED, FERT, SEED BY FERT.