split_chains {posterior} | R Documentation |
Split chains by halving the number of iterations per chain and doubling the number of chains.
split_chains(x, ...)
x |
(draws) A |
... |
Arguments passed to individual methods (if applicable). |
A draws
object of the same class as x
.
x <- example_draws() niterations(x) nchains(x) x <- split_chains(x) niterations(x) nchains(x)