Example (GLM: Univariate command)

GLM YIELD BY SEED FERT WITH RAINFALL
  /PRINT=DESCRIPTIVE PARAMETER
  /DESIGN.
  • YIELD is the dependent variable; SEED and FERT are factors; RAINFALL is a covariate.
  • The PRINT subcommand requests the descriptive statistics for the dependent variable for each cell and the parameter estimates, in addition to the default tables Between-Subjects Factors and Univariate Tests.
  • The DESIGN subcommand requests the default design (a full factorial model with a covariate). This subcommand could have been omitted or could have been specified in full as
/DESIGN = INTERCEPT RAINFALL, SEED, FERT, SEED BY FERT.