event.convert.Rd
Convert a two-column data matrix with event time and event code into multiple column event time with one event in each column
event.convert(data2, event.time = 1, event.code = 2)
a matrix or dataframe with at least 2 columns; by default, the first column contains the event time and the second column contains the k event codes (e.g. 1=dead, 0=censord)
the column number in data contains the event time
the column number in data contains the event code
In the survival analysis, the data typically come in two
columns: one column containing survival time and the other
containing censoring indicator or event code. The
event.convert
function converts this type of data into
multiple columns of event times, one column of each event
type, suitable for the event.chart
function.