dmbc_fit_list_to_mcmc.list {dmbc}R Documentation

Conversion of an dmbc_fit_list object to an object of class mcmc.list.

Description

dmbc_fit_list_to_mcmc.list converts an object of class dmbc_fit_list to an object with class mcmc.list.

Usage

dmbc_fit_list_to_mcmc.list(res, include.burnin = FALSE, verbose = TRUE)

Arguments

res

An object of type dmbc_fit_list.

include.burnin

A logical scalar. If TRUE the burnin iterations (if available) are not removed.

verbose

A logical scalar. If TRUE prints additional warnings during the conversion.

Value

An object of type mcmc.list.

Author(s)

Sergio Venturini sergio.venturini@unicatt.it

See Also

dmbc() for for fitting a DMBC model; dmbc_fit_list-class; mcmc.list.

Examples

## Not run: 
data(simdiss, package = "dmbc")

G <- 3
p <- 2
prm.prop <- list(z = 1.5, alpha = .75)
burnin <- 2000
nsim <- 1000
seed <- 2301

set.seed(seed)

control <- list(burnin = burnin, nsim = nsim, z.prop = prm.prop[["z"]],
  alpha.prop = prm.prop[["alpha"]], nchains = 2, verbose = TRUE)
sim.dmbc <- dmbc(simdiss, p, G, control)
sim.mcmc <- dmbc_fit_list_to_mcmc.list(sim.dmbc, TRUE)
plot(sim.mcmc)

## End(Not run)

[Package dmbc version 1.0.2 Index]