Learn R Programming

cr17 (version 0.1.0)

fitReg: Regression Models for Competing Risks

Description

fits Cox model for every type of an event including occuring of competing risks.

Usage

fitReg(time, risk, group, cens = NULL)

Arguments

time

vector with times of the first event or follow-up, must be numeric.

risk

vector with type of event, can be numeric or factor/character.

group

vector with group variable, can be numeric or factor/character.

cens

value of 'risk' indicating censored observation (if NULL, the first value of 'risk' vector will be taken).

Value

a list of length n, where n is number of different types of events. Each element of a list is a result of crr function from cmprsk package for given type of event.

See Also

crr

Examples

Run this code
# NOT RUN {
fitReg(time = LUAD$time, risk = LUAD$event, group = LUAD$gender, cens = "alive")
# }

Run the code above in your browser using DataLab