Derive the time imputation flag ('--TMF') comparing a date character vector
('--DTC') with a Datetime vector ('--DTM').
Arguments
- dtc
The date character vector (
'--DTC').A character date is expected in a format like
yyyy-mm-ddThh:mm:ss(partial or complete).- dtm
The Date vector to compare (
'--DTM').A datetime object is expected.
- ignore_seconds_flag
ADaM IG states that given SDTM (
'--DTC') variable, if only hours and minutes are ever collected, and seconds are imputed in ('--DTM') as 00, then it is not necessary to set ('--TMF') to'S'. A user can set this toTRUEso the'S'Flag is dropped from ('--TMF').A logical value
Default:
FALSE
See also
Date/Time Computation Functions that returns a vector:
compute_dtf(),
compute_duration(),
convert_date_to_dtm(),
convert_dtc_to_dtm(),
convert_dtc_to_dt(),
impute_dtc_dtm(),
impute_dtc_dt()
Examples
compute_tmf(dtc = "2019-07-18T15:25", dtm = as.POSIXct("2019-07-18T15:25:00"))
#> [1] "S"
compute_tmf(dtc = "2019-07-18T15", dtm = as.POSIXct("2019-07-18T15:25:00"))
#> [1] "M"
compute_tmf(dtc = "2019-07-18", dtm = as.POSIXct("2019-07-18"))
#> [1] "H"
