Description Usage Arguments Details Value Author(s) Examples
View source: R/derive_var_ady.R
Adds the analysis study day (ADY
) to the dataset, i.e., study day of analysis date.
1 | derive_var_ady(dataset, reference_date = TRTSDT, date = ADT)
|
dataset |
Input dataset The columns specified by the |
reference_date |
The start date column, e.g., date of first treatment A date or date-time object column is expected. The default is |
date |
The end date column for which the study day should be derived A date or date-time object column is expected. The default is |
The study day is derived as number of days from the start date to the end date. If it is non-negative, one is added. I.e., the study day of the start date is 1.
The input dataset with ADY
column added
Stefan Bundfuss
1 2 3 4 5 6 | data <- tibble::tribble(
~TRTSDT, ~ADT,
lubridate::ymd("2020-01-01"), lubridate::ymd("2020-02-24")
)
derive_var_ady(data)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.