plot.drop_term {MASSExtra} | R Documentation |
drop_term plot method
Description
drop_term plot method
Usage
## S3 method for class 'drop_term'
plot(
x,
...,
horiz = TRUE,
las = ifelse(horiz, 1, 2),
col = c("#DF536B", "#2297E6"),
border = c("#DF536B", "#2297E6"),
show.model = TRUE
)
Arguments
x |
An object of class |
... , horiz |
arguments past on to |
las |
graphics parameter |
col , border |
|
show.model |
logical: should the model itself be displayed? |
Value
x
invisibly
Examples
boston_quad <- lm(medv ~ . + (rm + tax + lstat)^2 + poly(rm, 2) +
poly(tax, 2) + poly(lstat, 2), Boston)
dboston_quad <- drop_term(boston_quad, k = "bic")
plot(dboston_quad)
plot(dboston_quad, horiz = FALSE)
[Package MASSExtra version 1.2.2 Index]