Description Usage Arguments Value Examples
A method that determines if a sample from a given iteration should be
saved. The sample should be saved if and only if:
it is not in burn-in period and it matches the step.
| 1 2 3 4 | saveSample(object, iteration, ...)
## S4 method for signature 'McmcOptions'
saveSample(object, iteration, ...)
 | 
| object | ( | 
| iteration | ( | 
| ... | not used. | 
TRUE if this sample should be saved.
| 1 2 3 4 5 6 | # Set up the MCMC option in order to have a burn-in of 10000 iterations and
# then take every other iteration up to a collection of 10000 samples.
my_options <- McmcOptions(burnin = 10000, step = 2, samples = 10000)
sampleSize(my_options)
saveSample(my_options, iteration = 5)
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.