thin_draws {posterior} | R Documentation |
draws
objectsThin draws
objects to reduce their size and autocorrelation in the chains.
thin_draws(x, thin, ...) ## S3 method for class 'draws' thin_draws(x, thin, ...) ## S3 method for class 'rvar' thin_draws(x, thin, ...)
x |
(draws) A |
thin |
(positive integer) The period for selecting draws. |
... |
Arguments passed to individual methods (if applicable). |
A draws
object of the same class as x
.
x <- example_draws() niterations(x) x <- thin_draws(x, thin = 5) niterations(x)