Usage
MCMClogit(formula, data = list(), burnin = 1000, mcmc = 10000,
thin=5, tune=1.1, verbose = FALSE, seed = 0, beta.start = NA,
b0 = 0, B0 = 0.001, ...)
Arguments
burnin
The number of burn-in iterations for the sampler.
mcmc
The number of Metropolis iterations for the sampler.
thin
The thinning interval used in the simulation. The number of
mcmc iterations must be divisible by this value.
tune
Metropolis tuning parameter. Make sure that the
acceptance rate is satisfactory before using the posterior density sample
for inference.
verbose
A switch which determines whether or not the progress of
the sampler is printed to the screen. If TRUE, the iteration number and
the betas are printed to the screen every 500 iterations.
seed
The seed for the random number generator. The code uses the
Mersenne Twister, which requires an integer as an input. If nothing
is provided, the Scythe default seed is used.
beta.start
The starting value for the $\beta$ vector.
This can either
be a scalar or a column vector with dimension equal to the number of
betas. If this takes a scalar value, then that value will serve as the
starting value for all of the betas.
b0
The prior mean of $\beta$. This can either be a
scalar or a column
vector with dimension equal to the number of betas. If this takes a scalar
value, then that value will serve as the prior mean for all of the
betas.
B0
The prior precision of $\beta$. This can either be a
scalar
or a square matrix with dimensions equal to the number of betas. If this
takes a scalar value, then that value times an identity matrix serves
as the prior precision of $\beta$.
...
further arguments to be passed