Bayes.CR
Propose a parametric fit for censored linear regression models based on
SMSN distributions, from a Bayesian perspective.
Bayes.CR(cc, x, y, cens = "left", dist = "Normal", criteria = "FALSE",
influence = "FALSE", spacing = "NULL", prior = NULL, hyper = NULL,
n.thin = 10, burnin = 100, n.iter = 2000, n.chains = 2,
chain = "TRUE")
Vector of censoring indicators. For each observation: 0 if non-censored, 1 if censored.
Matrix or vector of covariates.
Vector of responses in case of right/left censoring.
"left" for left censoring, "right" for right censoring.
Distribution to be used: "Normal" for Normal model, "T" for Student-t model, "Slash" for slash model, "NormalC" for contaminated Normal model, "SN" for Skew-Normal model, "ST" for Skew-t model and "SSL" for Skew-Slash model.
"TRUE" or "FALSE". Indicates if model selection criteria (LPML, DIC, EAIC, EBIC and WAIC) should be computed.
"TRUE" or "FALSE". Indicates if the divergence measures (KL divergence, J, L and Chi Distance) should be computed.
Should only be specified if at least one of "influence" or "criteria" is TRUE. This is the lag between observations of the final chain (after burn-in and thinning) used to compute these measures. If spacing=1, all the chain is used.
Prior distribution to be used for the degrees of freedom under Student-t model: "Exp" for exponential distribution, "Jeffreys" for Jeffreys prior, "Unif" for Uniforme distribution and "Hierar" for Hierarchical prior (exponential with a parameter that follows a uniform distribution). Must be "NULL" for other models.
Value of hyperparameter for the exponential prior. Must not be provided in case of others prior distributions.
Lag for posterior sample.
Burn-in for posterior sample.
The number of iterations to be considered (before burnin and thinning).
The number of chains to be considered. It must be less than 5.
If "TRUE", all the posterior chains are stored for posterior analysis.
Posterior mean for the parameters.
Standard deviations for the parameters.
HPD(95%) interval for the parameters.
Log-marginal pseudo likelihood for model selection.
DIC criterion for model selection.
EAIC criterion for model selection.
EBIC criterion for model selection.
First version of Watanabe-Akaike information criterion.
Second version of Watanabe-Akaike information criterion.
Specification of the priors distributions is given in reference papers (Garay et. al 2013 and Cancho et. al 2010). See Gelman et. al for the difference between the two versions of WAIC criterion. Calculations under the Skew-slash model may take a while, as it involves numerical integrations - you may want to specify big values to "spacing" under this model. For the Contaminated Normal model, a observation y comes from a normal distribution with mean "x beta" and variance "sigma2/rho" with probabilty "nu" and comes from a normal distribution with mean "x beta" and variance "sigma2" with probability 1-"nu".
##Load the data
data(motorettes)
attach(motorettes)
##Set design matrix
x <- cbind(1,x)
##Fits a right censored normal model
Normal <- Bayes.CR(cc,x,y,cens="right",dist="Normal",n.thin=10,burnin=200,n.iter=800, n.chains=1,chain="TRUE")