Read a list of matrices from a file for use with kalsurv.
Usage
read.list(file="", skip=0, nlines=1, cumulative=T, all=T)
Arguments
file
|
Name of the file to read
|
skip
|
Number of lines to skip at the beginning of the file
|
nlines
|
Number of lines in each series of duration times
|
cumulative
|
If TRUE, the times are cumulative and differences
are taken to obtain times between events. Otherwise, the times are
used unchanged.
|
all
|
If TRUE, all times have accompanying censor indicators;
otherwise, only the last one does.
|
Description
read.surv
reads sets of lines of data from a file. Each set may
contain a series of duration times followed by a censor indicator for
the last value (all=FALSE) or a series of pairs of times followed by
their censor indicators (all=TRUE).Value
A list containing a list of vectors containing the series of times
and a vector of censor indicators for the last time of each series is
returned.Author(s)
J.K. LindseySee Also
read.list
, restovec
, rmna
.Examples
y <- read.surv("test.dat")