From 9e74041fefef6b6171eebea2cb77f53a27f61a6c Mon Sep 17 00:00:00 2001 From: Daniel Date: Mon, 3 Jul 2023 14:10:09 +0200 Subject: [PATCH] exa --- R/weighted_posteriors.R | 5 +++-- man/weighted_posteriors.Rd | 5 +++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/R/weighted_posteriors.R b/R/weighted_posteriors.R index 6e6b600df..d9f8a9c1b 100644 --- a/R/weighted_posteriors.R +++ b/R/weighted_posteriors.R @@ -66,8 +66,9 @@ #' #' wp <- weighted_posteriors(extra_sleep, verbose = FALSE) #' -#' describe_posterior(extra_sleep, test = NULL) -#' describe_posterior(wp$delta, test = NULL) # also considers the null +#' describe_posterior(extra_sleep, test = NULL, verbose = FALSE) +#' # also considers the null +#' describe_posterior(wp$delta, test = NULL, verbose = FALSE) #' } #' #' diff --git a/man/weighted_posteriors.Rd b/man/weighted_posteriors.Rd index 03db583ba..77d154fc9 100644 --- a/man/weighted_posteriors.Rd +++ b/man/weighted_posteriors.Rd @@ -135,8 +135,9 @@ if (require("BayesFactor")) { wp <- weighted_posteriors(extra_sleep, verbose = FALSE) - describe_posterior(extra_sleep, test = NULL) - describe_posterior(wp$delta, test = NULL) # also considers the null + describe_posterior(extra_sleep, test = NULL, verbose = FALSE) + # also considers the null + describe_posterior(wp$delta, test = NULL, verbose = FALSE) }