Description Usage Arguments Value Author(s) Examples
View source: R/derive_date_vars.R
Convert a date (datetime, date, or date character) into a Date vector (usually '--DTM'
).
1 2 3 4 5 6 7 8 |
dt |
The date to convert. A date or character date is expected in a format like |
date_imputation |
The value to impute the day/month when a datepart is missing. If Otherwise, a character value is expected, either as a
Default is |
time_imputation |
The value to impute the time when a timepart is missing. A character value is expected, either as a
Default is |
min_dates |
Minimum dates A list of dates is expected. It is ensured that the imputed date is not
before any of the specified dates, e.g., that the imputed adverse event start
date is not before the first treatment date. Only dates which are in the
range of possible dates of the impute_dtc( "2020-11", min_dates = list( ymd_hms("2020-12-06T12:12:12"), ymd_hms("2020-11-11T11:11:11") ), date_imputation = "first" ) returns |
max_dates |
Maximum dates A list of dates is expected. It is ensured that the imputed date is not after any of the specified dates, e.g., that the imputed date is not after the data cut off date. Only dates which are in the range of possible dates are considered. |
preserve |
Preserve day if month is missing and day is present For example Permitted Values: Default: |
A datetime object
Samia Kabi
1 2 3 4 5 | convert_date_to_dtm("2019-07-18T15:25:00")
convert_date_to_dtm(Sys.time())
convert_date_to_dtm(as.Date("2019-07-18"), time_imputation = "23:59:59")
convert_date_to_dtm("2019-07-18", time_imputation = "23:59:59")
convert_date_to_dtm("2019-07-18")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.