saveSample: Determine if we should save this sample

View source: R/McmcOptions-methods.R

saveSampleR Documentation

Determine if we should save this sample

Description

Determine if we should save this sample

Usage

saveSample(iteration, mcmcOptions)

Arguments

iteration

the current iteration index

mcmcOptions

the McmcOptions object

Value

Logical value, if we should save this sample

Examples


# Set up 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
options <- McmcOptions(burnin=10000,
                       step=2,
                       samples=10000)

sampleSize(options)

saveSample(iteration=5,
           mcmcOptions=options)

crmPack documentation built on Sept. 3, 2022, 1:05 a.m.