Skip to contents

make_deployment_report() Will make an html report to use while conducting quality assurance and quality control (QAQC) on a deployment. It uses the "Auto_QC" CSV file generated by "qc_deployment()".

Usage

make_deployment_report(dir, quiet = FALSE)

Arguments

dir

A deployment directory

quiet

Set to TRUE for less chatter. Passed to rmarkdown::render().

Value

Invisibly returns the path the the QC report

Details

If an output ".html" file exists it will be rewritten.

Examples

if (FALSE) { # \dontrun{

example_paths <- setup_example_dir()
dir <- example_paths$deployment
qc_deployment(dir, report = FALSE)
report_path <-  make_deployment_report(dir)
} # }