plot.abess | R Documentation |
abess
" objectProduces a coefficient/deviance/tuning-value plot for a fitted "abess" object.
## S3 method for class 'abess'
plot(
x,
type = c("coef", "l2norm", "dev", "dev.ratio", "tune"),
label = FALSE,
...
)
x |
A " |
type |
The type of terms to be plot in the y-axis.
One of the following: |
label |
A logical value.
If |
... |
Other graphical parameters to plot |
No return value, called for side effects.
If family = "mgaussian"
, family = "ordinal"
or family = "multinomial"
,
a coefficient plot is produced for
each dimension of multivariate response.
print.abess
,
predict.abess
,
coef.abess
,
extract.abess
,
plot.abess
,
deviance.abess
.
dataset <- generate.data(100, 20, 3)
abess_fit <- abess(dataset[["x"]], dataset[["y"]])
plot(abess_fit)
plot(abess_fit, type = "l2norm")
plot(abess_fit, type = "dev")
plot(abess_fit, type = "tune")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.