Thin draws objects to reduce their size and autocorrelation in the chains.

thin_draws(x, thin, ...)

# S3 method for draws
thin_draws(x, thin, ...)

# S3 method for rvar
thin_draws(x, thin, ...)

Arguments

x

(draws) A draws object or another R object for which the method is defined.

thin

(positive integer) The period for selecting draws.

...

Arguments passed to individual methods (if applicable).

Value

A draws object of the same class as x.

Examples

x <- example_draws()
niterations(x)
#> [1] 100

x <- thin_draws(x, thin = 5)
niterations(x)
#> [1] 20