trace_rjMCMC.Rd
Burn and thin the MCMC chain(s).
trace_rjMCMC(rj.dat, burn = NULL, thin = 1)
rj.dat | MCMC object of class |
---|---|
burn | Number of iterations to discard as burn-in. |
thin | Thinning interval. Retains every |
A list object of class rjtrace
containing the trace in mcmc.list
format as well as additional information needed for the derivation of dose-response curves.
Adapted from the fitR
package https://github.com/sbfnk/fitR.
Phil J. Bouchet
if (FALSE) { library(espresso) # Import the example data, excluding species with sample sizes < 5 # and considering the sonar covariate mydat <- read_data(file = NULL, min.N = 5, covariates = "sonar") summary(mydat) # Configure the sampler mydat.config <- configure_rjMCMC(dat = mydat, model.select = TRUE, covariate.select = FALSE, function.select = FALSE, n.rep = 100) summary(mydat.config) # Run the reversible jump MCMC rj <- run_rjMCMC(dat = mydat.config, n.chains = 2, n.burn = 100, n.iter = 100, do.update = FALSE) # Burn and thin rj.trace <- trace_rjMCMC(rj.dat = rj) }