Can be "all", "common" or a character vector of
metrics to be computed (some of c("AIC", "AICc", "BIC", "R2", "R2_adj", "RMSE", "SIGMA", "LOGLOSS", "PCP", "SCORE")). "common"
will compute AIC, BIC, R2 and RMSE.
verbose
Toggle off warnings.
...
Arguments passed to or from other methods.
Value
A data frame (with one row) and one column per "index" (see metrics).
Details
Depending on model, following indices are computed:
AIC Akaike's Information Criterion, see ?stats::AIC
AICc Second-order (or small sample) AIC with a correction for small sample sizes
BIC Bayesian Information Criterion, see ?stats::BIC
# NOT RUN {model <- lm(mpg ~ wt + cyl, data = mtcars)
model_performance(model)
model <- glm(vs ~ wt + mpg, data = mtcars, family = "binomial")
model_performance(model)
# }