EventSplit | R Documentation |
splits after cut times for the two time-scales.
EventSplit(
data,
time = "time",
status = "status",
entry = "start",
cuts = "cuts",
name.id = "id",
gaptime = NULL,
gaptime.entry = NULL,
cuttime = c("time", "gaptime"),
cens.code = 0,
order.id = TRUE
)
data |
data to be split |
time |
time variable. |
status |
status variable. |
entry |
name of entry variable. |
cuts |
cuts variable or numeric cut (only one value) |
name.id |
name of id variable. |
gaptime |
gaptime variable. |
gaptime.entry |
name of entry variable for gaptime. |
cuttime |
to cut after time or gaptime |
cens.code |
code for the censoring. |
order.id |
order data after id and start. |
Thomas Scheike
rr <- data.frame(time=c(500,1000),start=c(0,500),status=c(1,1),id=c(1,1))
rr$gaptime <- rr$time-rr$start
rr$gapstart <- 0
rr1 <- EventSplit(rr,cuts=600,cuttime="time", gaptime="gaptime",gaptime.entry="gapstart")
rr2 <- EventSplit(rr1,cuts=100,cuttime="gaptime",gaptime="gaptime",gaptime.entry="gapstart")
dlist(rr1,start-time+status+gapstart+gaptime~id)
dlist(rr2,start-time+status+gapstart+gaptime~id)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.