LogisticNormal-class {crmPack} | R Documentation |
Standard logistic model with bivariate normal prior
Description
This is the usual logistic regression model with a bivariate normal prior on the intercept and slope.
Details
The covariate is the natural logarithm of the dose divided by
the reference dose
:
where is the probability of observing a DLT for a given dose
.
The prior is
The slots of this class contain the mean vector, the covariance and precision matrices of the bivariate normal distribution, as well as the reference dose.
Slots
mean
the prior mean vector
cov
the prior covariance matrix
prec
the prior precision matrix
refDose
the reference dose
Examples
# Define the dose-grid
emptydata <- Data(doseGrid = c(1, 3, 5, 10, 15, 20, 25, 40, 50, 80, 100))
model <- LogisticNormal(mean = c(-0.85, 1),
cov = matrix(c(1, -0.5, -0.5, 1), nrow = 2),
refDose = 50)
options <- McmcOptions(burnin=100,
step=2,
samples=1000)
options(error=recover)
mcmc(emptydata, model, options)
[Package crmPack version 1.0.6 Index]