survsplit | R Documentation |
For a given survival dataset and specified cut times, each record is split into multiple subrecords at each cut time. The resulting dataset is in counting process format, with each subrecord containing a start time, stop time, and event status. This is adapted from the survplit.c function from the survival package.
survsplit(tstart, tstop, cut)
tstart |
The starting time of the time interval for counting-process data. |
tstop |
The stopping time of the time interval for counting-process data. |
cut |
The vector of cut points. |
A data frame with the following variables:
row
: The row number of the observation in the input data
(starting from 0).
start
: The starting time of the resulting subrecord.
stop
: The stopping time of the resulting subrecord.
censor
: Whether the subrecord lies strictly within a record
in the input data.
interval
: The interval number.
Kaifeng Lu, kaifenglu@gmail.com
survsplit(15, 60, c(10, 30, 40))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.