Learn R Programming

bayestestR (version 0.11.5)

bic_to_bf: Convert BIC indices to Bayes Factors via the BIC-approximation method.

Description

Convert BIC indices to Bayes Factors via the BIC-approximation method.

Usage

bic_to_bf(bic, denominator, log = FALSE)

Arguments

bic

A vector of BIC values.

denominator

The BIC value to use as a denominator (to test against).

log

Return the log(BF)?

Value

The Bayes Factors corresponding to the BIC values against the denominator.

Examples

Run this code
# NOT RUN {
bic1 <- BIC(lm(Sepal.Length ~ 1, data = iris))
bic2 <- BIC(lm(Sepal.Length ~ Species, data = iris))
bic3 <- BIC(lm(Sepal.Length ~ Species + Petal.Length, data = iris))
bic4 <- BIC(lm(Sepal.Length ~ Species * Petal.Length, data = iris))

bic_to_bf(c(bic1, bic2, bic3, bic4), denominator = bic1)
# }

Run the code above in your browser using DataLab