This function is used to define priors for the model parameters of a Bayesian geostatistical model.
control.prior(
beta.mean,
beta.covar,
log.prior.sigma2 = NULL,
log.prior.phi = NULL,
log.prior.nugget = NULL,
uniform.sigma2 = NULL,
log.normal.sigma2 = NULL,
uniform.phi = NULL,
log.normal.phi = NULL,
uniform.nugget = NULL,
log.normal.nugget = NULL
)
mean vector of the Gaussian prior for the regression coefficients.
covariance matrix of the Gaussian prior for the regression coefficients.
a function corresponding to the log-density of the prior distribution for the variance sigma2
of the Gaussian process. Warning: if a low-rank approximation is used, then sigma2
corresponds to the variance of the iid zero-mean Gaussian variables. Default is NULL
.
a function corresponding to the log-density of the prior distribution for the scale parameter of the Matern correlation function; default is NULL
.
optional: a function corresponding to the log-density of the prior distribution for the variance of the nugget effect; default is NULL
with no nugget incorporated in the model; default is NULL
.
a vector of length two, corresponding to the lower and upper limit of the uniform prior on sigma2
. Default is NULL
.
a vector of length two, corresponding to the mean and standard deviation of the distribution on the log scale for the log-normal prior on sigma2
. Default is NULL
.
a vector of length two, corresponding to the lower and upper limit of the uniform prior on phi
. Default is NULL
.
a vector of length two, corresponding to the mean and standard deviation of the distribution on the log scale for the log-normal prior on phi
. Default is NULL
.
a vector of length two, corresponding to the lower and upper limit of the uniform prior on tau2
. Default is NULL
.
a vector of length two, corresponding to the mean and standard deviation of the distribution on the log scale for the log-normal prior on tau2
. Default is NULL
.
a list corresponding the prior distributions for each model parameter.
See "Priors definition" in the Details section of the binomial.logistic.Bayes
function.