
This function defines the options for the MCMC algorithm used in the Monte Carlo maximum likelihood method.
control.mcmc.MCML(n.sim, burnin, thin = 1, h = NULL, c1.h = 0.01, c2.h = 1e-04)
number of simulations.
length of the burn-in period.
only every thin
iterations, a sample is stored; default is thin=1
.
tuning parameter of the proposal distribution used in the Langevin-Hastings MCMC algorithm (see Laplace.sampling
and Laplace.sampling.lr
); default is h=NULL
and then set internally as
value of h
; default is c1.h=0.01
. See also 'Details' in binomial.logistic.MCML
value of h
; default is c1.h=0.01
. See also 'Details' in binomial.logistic.MCML
A list with processed arguments to be passed to the main function.
# NOT RUN {
control.mcmc <- control.mcmc.MCML(n.sim=1000,burnin=100,thin=1,h=0.05)
str(control.mcmc)
# }
Run the code above in your browser using DataLab