Learn R Programming

cr17 (version 0.1.0)

fitCuminc: Cumulative Incidences Curves

Description

Fits cumulative incidence function across different groups and risks.

Usage

fitCuminc(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

list of length [(number of risks)*(number of groups) + 1], containing estimation of cumulative incidences curves for each risk and group. The last element of a list is a data.frame with results of a K-sample test, containing test statistic, p-value and degrees od freedom for each risk.

See Also

cuminc

Examples

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

Run the code above in your browser using DataLab