Learn R Programming

performance (version 0.1.0)

model_performance.stanreg: Performance of Bayesian Models

Description

Compute indices of model performance for (general) linear models.

Usage

# S3 method for stanreg
model_performance(model, metrics = "all", ci = 0.9,
  ...)

Arguments

model

Object of class stanreg or brmsfit.

metrics

Can be "all" or a character vector of metrics to be computed (some of c("LOOIC", "R2", "R2_adj")).

ci

The Credible Interval level for R2.

...

Arguments passed to or from other methods.

Value

A data frame (with one row) and one column per "index" (see metrics).

References

Gelman, A., Goodrich, B., Gabry, J., & Vehtari, A. (2018). R-squared for Bayesian regression models. The American Statistician, The American Statistician, 1-6.

See Also

r2_bayes

Examples

Run this code
# NOT RUN {
library(rstanarm)
model <- stan_glm(mpg ~ wt + cyl, data = mtcars, chains = 1, iter = 500)
model_performance(model)

# }

Run the code above in your browser using DataLab