
Last chance! 50% off unlimited learning
Sale ends in
confint
is a generic function which computes confidence intervals for parameters in models fitted by jmodelTM()
or jmodelMult()
.
# S3 method for jmodelTM
confint(object, parm, level = 0.95, …)
# S3 method for jmodelMult
confint(object, parm, level = 0.95, …)
an object inheriting from class jmodelTM
or jmodelMult
.
a specification of which parameters are to be given confidence intervals. As currently implemented, always give confidence intervals for all regression coefficients.
the confidence level required.
additional arguments required. None is used in this method.
A list consists of the following components:
a matrix with columns giving parameter estimates as well as their lower and upper confidence limits for the regression parameters of the longitudinal process.
a matrix with columns giving parameter estimates as well as their lower and upper confidence limits for the regression parameters of the survival process.
the confidence level used in computing the confidence limits.
# NOT RUN {
fitLME <- lme(proth ~ Trt * obstime, random = ~ 1 | ID, data = liver)
fitCOX <- coxph(Surv(start, stop, event) ~ Trt, data = liver, x = TRUE)
fitJT.ph <- jmodelTM(fitLME, fitCOX, liver, timeVarY = 'obstime')
# 95% confidence intervals for the joint model parameters
confint(fitJT.ph)
# }
Run the code above in your browser using DataLab