3 Command line operations
3.1 Load package
Load the bdchecks
package
library(bdchecks)
3.2 Perform data checks
bdchecks
contains a dataset on bats named dataBats
.
To perform all data checks use performDataCheck
:
resultDC <- bdchecks::performDataCheck(bdchecks::dataBats)
replace bdchecks::dataBats
with your own dataset name.
3.3 Review performed checks
See which data checks were performed:
resultDC
Review data checks result (% of records that passed, failed or have missing data)
# Nice summary
summary_DC(resultDC)
3.4 Filtering your data
[ TBA ]