LogisticLogNormalSub-class {crmPack}R Documentation

Standard logistic model with bivariate (log) normal prior with substractive dose standardization

Description

This is the usual logistic regression model with a bivariate normal prior on the intercept and log slope.

Details

The covariate is the dose xx minus the reference dose xx^{*}:

logit[p(x)]=α+β(xx)logit[p(x)] = \alpha + \beta \cdot (x - x^{*})

where p(x)p(x) is the probability of observing a DLT for a given dose xx.

The prior is

(α,log(β))Normal(μ,Σ)(\alpha, \log(\beta)) \sim Normal(\mu, \Sigma)

The slots of this class contain the mean vector and the covariance matrix of the bivariate normal distribution, as well as the reference dose.

Slots

mean

the prior mean vector μ\mu

cov

the prior covariance matrix Σ\Sigma

refDose

the reference dose xx^{*}

Examples



model <- LogisticLogNormalSub(mean = c(-0.85, 1),
                           cov = matrix(c(1, -0.5, -0.5, 1), nrow = 2),
                           refDose = 50)



[Package crmPack version 1.0.6 Index]