PRINT Subcommand (GENLOG command)

PRINT controls the display of statistics.

  • By default, GENLOG displays the frequency table and simple, adjusted, and deviance residuals.
  • When PRINT is specified with one or more keywords, only the statistics requested by these keywords are displayed.
  • When multiple PRINT subcommands are specified, the last specification takes effect.

The following keywords can be used on PRINT:

FREQ. Observed and expected cell frequencies and percentages. This is displayed by default.

RESID. Simple residuals. This is displayed by default.

ZRESID. Standardized residuals.

ADJRESID. Adjusted residuals. This is displayed by default.

DEV. Deviance residuals. This is displayed by default.

DESIGN. The design matrix of the model. The design matrix corresponding to the specified model is displayed.

ESTIM. The parameter estimates of the model. The parameter estimates refer to the original categories.

CORR. The correlation matrix of the parameter estimates.

COV. The covariance matrix of the parameter estimates.

ALL. All available output.

DEFAULT. FREQ, RESID, ADJRESID, and DEV. This keyword can be used to reset PRINT to its default setting.

NONE. The design and model information with goodness-of-fit statistics only. This option overrides all other specifications on the PRINT subcommand.

Example

GENLOG A B
 /PRINT=ALL
 /DESIGN=A B.
  • The DESIGN subcommand specifies a main-effects model, which tests the hypothesis of no interaction. The PRINT subcommand displays all available output for this model.