summary.cmprsk {QHScrnomo} | R Documentation |
Summary of a Competing Risks Regression Model
Description
Uses the summary.rms
method to construct a summary for the competing risks regression model fit from crr.fit
.
Usage
## S3 method for class 'cmprsk'
summary(object, ...)
Arguments
object |
A model fit by |
... |
Other arguments for |
Value
A summary.rms
matrix
Note
This function requires that the rms
package is attached
Author(s)
Changhong Yu. Department of Quantitative Health Sciences, Cleveland Clinic
See Also
Examples
dd <- datadist(prostate.dat)
options(datadist = "dd")
prostate.f <- cph(Surv(TIME_EVENT,EVENT_DOD == 1) ~ TX + rcs(PSA,3) +
BX_GLSN_CAT + CLIN_STG + rcs(AGE,3) +
RACE_AA, data = prostate.dat,
x = TRUE, y = TRUE, surv = TRUE,time.inc = 144)
prostate.crr <- crr.fit(prostate.f, cencode = 0, failcode = 1)
summary(prostate.crr)
[Package QHScrnomo version 3.0.1 Index]