View source: R/GetFrineGrayWeights.R
getFineGrayWeights | R Documentation |
Surv
object that forces in competing risks and the IPCW needed for Fine-Gray estimation.getFineGrayWeights
creates a list Surv
object and vector of weights required for estimation.
getFineGrayWeights(ftime, fstatus, cvweights = NULL, cencode = 0, failcode = 1)
ftime |
Numeric: Observed event (failure) times |
fstatus |
Numeric: Observed event (failure) types |
cvweights |
Numeric: Vector of 0/1 (cross-validation) weights for each data row |
cencode |
Numeric: Code to denote censored observations (Default is 0) |
failcode |
Numeric: Code to denote event of interest (Default is 1) |
A list that returns both an object of class Surv
that forces in the competing risks indicators and a vector of weights needed for parameter estimation.
ftime <- c(1, 2, 3, 4, 5, 6, 7, 8, 9, 10)
fstatus <- c(1, 2, 0, 1, 2, 0, 1, 2, 0, 1)
getFineGrayWeights(ftime, fstatus, cencode = 0, failcode = 1)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.