R/split-chains.R

Defines functions split_chains

Documented in split_chains

#' Split Chains
#'
#' Splits each of an MCMC object's chains in half
#' to double the number of chains
#' and halve the number of iterations.
#'
#' @inheritParams params
#' @return The modified object.
#' @family MCMC manipulations
#' @export
split_chains <- function(x, ...) {
  UseMethod("split_chains")
}
poissonconsulting/universals documentation built on June 9, 2025, 1:58 p.m.