modelcheck {s20x} | R Documentation |
Model checking plots Compact layout for model checking plots.
Description
Model checking plots Compact layout for model checking plots.
Usage
modelcheck(x, ...)
## S3 method for class 'lm'
modelcheck(x, which = 1:3, mar = c(3, 4, 1.5, 4), ...)
Arguments
x |
The fitted model. |
which |
The plot(s) to be drawn. Residuals vs fitted values (
|
mar |
Margins applied to each selected plot. |
... |
any other arguments to pass to |
Methods (by class)
-
modelcheck(lm)
: Model checking plots
Examples
x = 1:30
y = rnorm(30)
lm.fit = lm(y~x)
# Plot resids vs fitted only
modelcheck(lm.fit, 1)
# Plot resids vs fitted, and histogram and QQ plot
modelcheck(lm.fit, 1:2)
# Plot all
modelcheck(lm.fit)
[Package s20x version 3.1-40 Index]