Revision aee422d7cd4098dad89e31ecc6dfd9e539d2bda4 authored by Dominique Makowski on 06 August 2019, 10:20:02 UTC, committed by cran-robot on 06 August 2019, 10:20:02 UTC
1 parent 23ea322
print.bayesfactor_restricted.R
#' @export
print.bayesfactor_restricted <- function(x, digits = 2, log = FALSE, ...) {
BFE <- x
if (log) {
BFE$BF <- log(BFE$BF)
}
BFE$BF <- .format_big_small(BFE$BF, digits = digits)
colnames(BFE) <- c("Hypothesis", "P(Prior)", "P(Posterior)", "Bayes Factor")
insight::print_color("# Bayes Factor (Order-Restriction)\n\n", "blue")
print.data.frame(BFE, digits = digits, row.names = FALSE)
cat("\n* Bayes factors for the restricted movel vs. the un-restricted model.\n")
if (log) insight::print_color("\nBayes Factors are on the log-scale.\n", "red")
invisible(x)
}
Computing file changes ...