| lmplot | R Documentation |
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.
lmplot(lm.object, ..., main=NULL,
col=trellis.par.get("superpose.symbol")$col[1:2],
ylim=NULL)
lm.object |
Linear model object. See |
col |
Vector of color names. Only the first two are used.
If not specified, then
|
main |
standard |
ylim |
standard lattice argument.
It is used as specified for the |
... |
Other arguments, currently ignored. |
The trellis plots from the four functions residVSfitted,
scaleLocation, diagQQ, diagplot5new
are displayed on the current device in a coordinated display.
A list of three trellis objects is returned invisibly, the first
contains the result of residVSfitted and
scaleLocation together. The second diagQQ,
and the third diagplot5new.
Richard M. Heiberger <rmh@temple.edu>
residVSfitted, scaleLocation,
diagQQ, diagplot5new.
tmp <- data.frame(y=rnorm(100), x1=rnorm(100), x2=rnorm(100))
tmp.lm <- lm(y ~ x1 + x2, data=tmp)
lmplot(tmp.lm)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.