View source: R/derive_var_trtdurd.R
derive_var_trtdurd | R Documentation |
Derives total treatment duration (days) (TRTDURD
).
Note: This is a wrapper function for the more generic derive_vars_duration()
.
derive_var_trtdurd(dataset, start_date = TRTSDT, end_date = TRTEDT)
dataset |
Input dataset The variables specified by the |
start_date |
The start date A date or date-time object is expected. Refer to Default: |
end_date |
The end date A date or date-time object is expected. Refer to Default: |
The total treatment duration is derived as the number of days from start to end date plus one.
The input dataset with TRTDURD
added
derive_vars_duration()
Date/Time Derivation Functions that returns variable appended to dataset:
derive_vars_dt()
,
derive_vars_dtm()
,
derive_vars_dtm_to_dt()
,
derive_vars_dtm_to_tm()
,
derive_vars_duration()
,
derive_vars_dy()
library(tibble)
library(lubridate)
data <- tribble(
~TRTSDT, ~TRTEDT,
ymd("2020-01-01"), ymd("2020-02-24")
)
derive_var_trtdurd(data)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.