control.mcmc.MCML {PrevMap} | R Documentation |
Control settings for the MCMC algorithm used for classical inference on a binomial logistic model
Description
This function defines the options for the MCMC algorithm used in the Monte Carlo maximum likelihood method.
Usage
control.mcmc.MCML(n.sim, burnin, thin = 1, h = NULL, c1.h = 0.01, c2.h = 1e-04)
Arguments
n.sim |
number of simulations. |
burnin |
length of the burn-in period. |
thin |
only every |
h |
tuning parameter of the proposal distribution used in the Langevin-Hastings MCMC algorithm (see |
c1.h |
value of |
c2.h |
value of |
Value
A list with processed arguments to be passed to the main function.
Author(s)
Emanuele Giorgi e.giorgi@lancaster.ac.uk
Peter J. Diggle p.diggle@lancaster.ac.uk
Examples
control.mcmc <- control.mcmc.MCML(n.sim=1000,burnin=100,thin=1,h=0.05)
str(control.mcmc)