DataQualityDashboard icon indicating copy to clipboard operation
DataQualityDashboard copied to clipboard

Add exclusion option for checkNames

Open bronshvayg opened this issue 5 years ago • 1 comments

Currently there is ability to limit the number of names to check by defining list of names into checkNames object. It would be nice to have an option to specify list of the Names to exclude from the run, i.e. run all checks, except specified names.

bronshvayg avatar Nov 15 '19 16:11 bronshvayg

you can get all of them and do a minus set operation. see http://rpubs.com/vojtech_huser/book701 chapter DQD

checkNames=c('plausibleValueLow')

#all checks are here
dashChecks<-read.csv(system.file("csv","OMOP_CDMv5.3.1_Check_Descriptions.csv",package="DataQualityDashboard"),as.is=T)
dashChecks$checkName

vojtechhuser avatar Nov 16 '19 18:11 vojtechhuser

docs are being updated in #443

katy-sadowski avatar May 19 '23 18:05 katy-sadowski

Docs (code to run) updated in v2.3.0 release.

katy-sadowski avatar May 21 '23 19:05 katy-sadowski

I realized I got confused, in 2.3.0 docs were updated to demonstrate tablesToExclude, not how to exclude checks. Will add this in a future release.

katy-sadowski avatar Aug 08 '23 21:08 katy-sadowski

Docs have been updated with suggestion for how to exclude checks in v2.4.1

katy-sadowski avatar Oct 19 '23 13:10 katy-sadowski