iterations
(count)
number of MCMC iterations.
burnin
(count)
number of burn-in iterations which are not saved.
step
(count)
only every step-th iteration is saved after
the burnin. In other words, a sample from iteration
i = 1,...,iterations, is saved if and only if
(i - burnin) mod step = 0.
For example, for iterations = 6, burnin = 0 and step = 2, only
samples from iterations 2,4,6 will be saved.
rng_kind
(string)
a Random Number Generator (RNG) type used by
rjags::rjags. It must be one out of the following four values:
base::Wichmann-Hill, base::Marsaglia-Multicarry,
base::Super-Duper, base::Mersenne-Twister, or NA_character_.
If it is NA_character_ (default), then the RNG kind will be chosen by
rjags::rjags.
rng_seed
(number)
a Random Number Generator (RNG) seed
used by rjags::rjags for a chosen rng_kind. It must be an integer scalar or
NA_integer_, which means that the seed will be chosen by rjags::rjags.