pscl (version 1.5.5)

idealToMCMC: convert an object of class ideal to a coda MCMC object

Description

Converts the x element of an ideal object to an MCMC object, as used in the coda package.

Usage

idealToMCMC(object, burnin=NULL)

Value

A mcmc object as used by the

coda package, starting at iteration start, drawn from the x component of the

ideal object.

Arguments

object

an object of class ideal.

burnin

of the recorded MCMC samples, how many to discard as burnin? Default is NULL, in which case the value of burnin in the ideal object is used.

See Also

ideal, mcmc

Examples

Run this code
data(s109)
f = system.file("extdata",package="pscl","id1.rda")
load(f)
id1coda <- idealToMCMC(id1)
summary(id1coda)  

Run the code above in your browser using DataCamp Workspace