
Convert to a Competing Risks Task
as_task_cmprsk.RdConvert object to a competing risks task (TaskCompRisks).
Usage
as_task_cmprsk(x, ...)
# S3 method for class 'TaskCompRisks'
as_task_cmprsk(x, clone = FALSE, ...)
# S3 method for class 'data.frame'
as_task_cmprsk(
x,
time = "time",
event = "event",
id = deparse(substitute(x)),
...
)
# S3 method for class 'DataBackend'
as_task_cmprsk(
x,
time = "time",
event = "event",
id = deparse(substitute(x)),
...
)Arguments
- x
(
any)
Object to convert, e.g. adata.frame().- ...
(
any)
Additional arguments.- clone
(
logical(1))
IfTRUE, ensures that the returned object is not the same as the inputx.- time
(
character(1))
Name of the column for outcome time.- event
(
character(1))
Name of column giving that holds the event indicator. \(0\) corresponds to censoring, values \(> 0\) correspond to different competing events.- id
(
character(1))
Id for the new task. Defaults to the (deparsed and substituted) name ofx.