vibe.lm | R Documentation |
lm
objectvibe.lm
takes a fitted lm()
object and calculates
variable importance metrics by fitting the submodels required, extracting the
desired goodness-of-fit metric and applying variable importance metrics to
it.
## S3 method for class 'lm'
vibe(object, varimp = "hp", gof = "R2e", ncores = 1, progress = TRUE, ...)
object |
A |
varimp |
One of |
gof |
Goodness-of-fit metric, the changes of which shall be analysed |
ncores |
Number of cores used for the model fitting process, happening
in |
progress |
Boolean. Do you want to see a progress bar? |
... |
Other arguments |
iris_lm <- lm(Sepal.Width ~ ., data = iris)
vibe(iris_lm, gof = "R2Mac", varimp = "hp")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.