HH (version 3.1-19)

lmplot: Four types of residual plots for linear models.

Description

Four types of residual plots for linear models. The first three are redesigns of plots that stats:::plot.lm presents. The first two show the positive residuals in col[2] and the negative residuals in color col[1]. The third and fourth use color col[1]. The fourth is based on an S-Plus panel that R doesn't provide.

Usage

lmplot(lm.object, ...,
       col=trellis.par.get("superpose.symbol")$col[1:2])

Arguments

lm.object
Linear model object. See lm for details.
col
Vector of color names. Only the first two are used. If not specified, then trellis.par.get("superpose.symbol")$col[1:2] is used.
...
Other arguments, currently ignored.

Value

Details

The trellis plots from the four functions residVSfitted, scaleLocation, diagQQ, diagplot5new are displayed on the current device in a coordinated display.

Examples

Run this code
tmp <- data.frame(y=rnorm(100), x1=rnorm(100), x2=rnorm(100))
tmp.lm <- lm(y ~ x1 + x2, data=tmp)
lmplot(tmp.lm)

Run the code above in your browser using DataCamp Workspace