Description Usage Arguments Value Author(s) Examples
Produces a summary of a fitted coxidm model (proportional hazards regression model in each transition of the Illness-Death Model.
1 2 |
object |
A fitted |
type |
Type of summary of the Cox model. Default value is |
conf.level |
Level for computation of the confidence intervals. If set
to |
... |
Other options. |
A data frame or a list containing the following components:
coef |
Estimated coeficients. |
exp(coef) |
Exponent of the estimated coefficients. |
lower 0.95 |
Lower limit of the confidence interval. |
upper 0.95 |
Upper limit of the confidence interval. |
pvalue |
obtained pvalue testing that the coefficient is equals to zero. |
Other data frames with the Analysis of Deviance or the tests of the Proportional Hazards Assumption of the Cox Regression models.
Luis Meira-Machado, Marta Sestelo and Gustavo Soutinho.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | cmm1 <- coxidm(survIDM(time1, event1, Stime, event) ~ age, data = colonIDM)
summary(cmm1, conf.level = 0.95)
cmm2 <- coxidm(survIDM(time1, event1, Stime, event) ~ rx + sex + age + nodes,
data = colonIDM)
summary(cmm2)
summary(cmm2,type = 'anova')
cmm3 <- coxidm(survIDM(time1, event1, Stime, event) ~ rx + sex + age + nodes,
data = colonIDM, semiMarkov = TRUE)
summary(cmm3)
cmm4 <- coxidm(survIDM(time1, event1, Stime, event) ~ rx + sex + age +
pspline(nodes) + surg + adhere, data = colonIDM)
summary(cmm4, type = 'ph')
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.