powered by
Compute indices of model performance for (generalized) linear models.
# S3 method for lm model_performance(model, metrics = "all", ...)# S3 method for glm model_performance(model, metrics = "all", ...)
# S3 method for glm model_performance(model, metrics = "all", ...)
Object of class lm or glm.
lm
glm
Can be "all" or a character vector of metrics to be computed (some of c("AIC", "BIC", "R2", "RMSE")).
"all"
c("AIC", "BIC", "R2", "RMSE")
Arguments passed to or from other methods.
A data frame (with one row) and one column per "index" (see metrics).
metrics
# NOT RUN { model <- lm(mpg ~ wt + cyl, data = mtcars) model_performance(model) model <- glm(vs ~ wt + mpg, data = mtcars, family = "binomial") model_performance(model) # }
Run the code above in your browser using DataLab