Nothing
#' @export
universals::converged
#' @inherit universals::converged
#' @inheritParams params
#' @export
#' @examples
#' converged(mcmcr_example)
converged.default <- function(x, rhat = 1.1, esr = 0.33, by = "all",
as_df = FALSE, na_rm = FALSE, ...) {
chk_number(rhat)
chk_range(rhat, c(1, 10))
chk_number(esr)
chk_range(esr)
chk_unused(...)
esrs <- esr(x, by = by, as_df = as_df, na_rm = na_rm)
rhats <- rhat(x, by = by, as_df = as_df, na_rm = na_rm)
if (as_df) {
converged <- esrs
converged$converged <- converged$esr >= esr
converged$esr <- NULL
converged$converged <- converged$converged & rhats$rhat <= rhat
return(converged)
}
converged <- unlist(esrs)
converged <- converged >= esr
rhats <- unlist(rhats)
converged <- converged & rhats <= rhat
utils::relist(converged, esrs)
}
#' @inherit universals::converged
#' @inheritParams params
#' @export
#' @examples
#' converged(mcmcrs(mcmcr_example, mcmcr_example))
#' converged(mcmcrs(mcmcr_example, mcmcr_example), bound = TRUE)
converged.mcmcrs <- function(x, rhat = 1.1, esr = 0.33, by = "all", as_df = FALSE,
bound = FALSE, na_rm = FALSE, ...) {
chk_flag(bound)
chk_unused(...)
if (bound) {
x <- Reduce(bind_chains, x)
return(converged(x, rhat = rhat, esr = esr, by = by, as_df = as_df, na_rm = na_rm))
}
lapply(x, converged, rhat = rhat, esr = esr, by = by, as_df = as_df, na_rm = na_rm)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.