Description Usage Arguments Value Author(s) Examples
Fits a Cox proportional hazards regression model for each transition.
1 |
formula |
A |
data |
A data.frame including at least four columns named
|
semiMarkov |
By default, |
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 or lists:
anova |
Analysis of Deviance for the Cox Regression models. |
zph |
Test the Proportional Hazards Assumption of the Cox Regression models. |
term |
Predicted values of splines and partial residual for the terms of the model. |
Luis Meira-Machado, Marta Sestelo and Gustavo Soutinho.
1 2 3 4 5 6 7 8 9 10 | 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)
cmm3 <- coxidm(survIDM(time1, event1, Stime, event) ~ rx + sex + age + nodes,
data = colonIDM, semiMarkov = TRUE)
summary(cmm3)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.