I am currerntly using the function dq_report2 under dataquieR package to generate a data quality report, however, the report has included some things that i wish to remove from the report such as under descriptive statistics there is a part on the graph of the variables, may i know if its possible to even remove things that dq_report2 auto generates it out for you?
library(dataquieR)
library(readxl)
study_data <- read_excel(“/Users/yangling/Documents/study_data trial.xlsx”)
meta_data <- read_excel(“/Users/yangling/Documents/meta_data trial1.xlsx”)
prep_load_workbook_like_file(“/Users/yangling/Documents/study_data trial.xlsx”)
prep_load_workbook_like_file(“/Users/yangling/Documents/meta_data trial1.xlsx”)
my_dq_report <- dq_report2(study_data = “/Users/yangling/Documents/study_data trial.xlsx”,
meta_data = “/Users/yangling/Documents/meta_data trial1.xlsx”,
label_col = LABEL)
print(my_dq_report)
sample of my code
yang ling is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.