View source: R/check_dv_covid.R
check_dv_covid | R Documentation |
This check looks for inconsistency between DVREAS and DVEPRELI. If DVREAS indicates a COVID-19 related deviation, then DVEPRELI should not be missing and vice versa. This check applies to studies using the Protocol Deviation Management System (PDMS).
check_dv_covid(DV)
DV |
Protocol Deviations SDTM dataset with variables USUBJID, DVREAS, DVEPRELI |
boolean value if check failed or passed with 'msg' attribute if the test failed
Mij Rahman
Other COVID:
check_ae_aeacn_ds_disctx_covid()
,
check_ae_aeacnoth_ds_stddisc_covid()
,
check_dv_ae_aedecod_covid()
DV <- data.frame(
USUBJID = 1:3,
DVEPRELI = c("Y","N","Y"),
DVREAS=c("EPIDEMIC/PANDEMIC INFECTION","EPIDEMIC/PANDEMIC INFECTION",""),
stringsAsFactors=FALSE
)
check_dv_covid(DV)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.