PLOT Subcommand (GENLOG command)
PLOT
specifies
which plots you want to display. Plots of adjusted residuals against
observed and expected counts, and normal and detrended normal plots
of the adjusted residuals are displayed if PLOT
is not specified or is specified without a keyword.
When multiple PLOT
subcommands
are specified, only the last specification is executed.
DEFAULT. RESID (ADJRESID)
and NORMPROB (ADJRESID). This is the default if PLOT
is not specified or is specified with
no keyword.
RESID (type). Plots of residuals
against observed and expected counts. You can specify
the type of residuals to plot. ADJRESID
plots adjusted residuals; DEV
plots deviance residuals. ADJRESID
is the default if you do not specify a type.
NORMPROB (type). Normal and
detrended normal plots of the residuals. You can specify
the type of residuals to plot. ADJRESID
plots adjusted residuals; DEV
plots deviance residuals. ADJRESID
is the default if you do not specify a type.
NONE. No plots.
Example
GENLOG RESPONSE BY SEASON
/MODEL=MULTINOMIAL
/PLOT=RESID(ADJRESID,DEV)
/DESIGN=RESPONSE SEASON(1) BY RESPONSE.
- This example requests plots of adjusted and deviance residuals against observed and expected counts.
- Note that if you specify /PLOT=RESID(ADJRESID) RESID(DEV), only the deviance residuals are plotted. The first keyword specification, RESID(ADJRESID), is ignored.