Description Usage Arguments Value Author(s) See Also Examples
View source: R/derive_param_tte.R
event_source
objects are used to define events as input for the
derive_param_tte()
function.
1 | event_source(dataset_name, filter = NULL, date, set_values_to = NULL)
|
dataset_name |
The name of the source dataset The name refers to the dataset provided by the |
filter |
An unquoted condition for selecting the observations from
|
date |
A variable providing the date of the event or censoring. A date, a datetime, or a character variable containing ISO 8601 dates can be specified. An unquoted symbol is expected. |
set_values_to |
A named list returned by |
An object of class event_source
, inheriting from class tte_source
Stefan Bundfuss
derive_param_tte()
, censor_source()
1 2 3 4 5 6 7 8 9 10 11 | # Death event
event_source(
dataset_name = "adsl",
filter = DTHFL == "Y",
date = DTHDT,
set_values_to = vars(
EVNTDESC = "DEATH",
SRCDOM = "ADSL",
SRCVAR = "DTHDT"
)
)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.