Learn R Programming

brms (version 1.7.0)

add_ic.brmsfit: Add information criteria to fitted model objects

Description

Add information criteria to fitted model objects

Usage

# S3 method for brmsfit
add_ic(x, ic = "loo", ...)

add_ic(x, ...)

Arguments

x

An R object typically of class brmsfit.

ic

Names of the information criteria to compute. Currently supported are "loo" and "waic".

...

Further arguments passed to LOO or WAIC.

Value

An object of the same class as x, but with information criteria added for later usage.

Examples

Run this code
# NOT RUN {
fit <- brm(count ~ Trt, epilepsy, poisson())
# add both LOO and WAIC at once
fit <- add_ic(fit, ic = c("loo", "waic"))
print(fit$loo)
print(fit$waic)
# }
# NOT RUN {
# }

Run the code above in your browser using DataLab