create_awareness_report {dbGaPCheckup} | R Documentation |
Create Awareness Report
Description
This function generates an awareness report in HTML format, and optionally opens it in the web browser.
Usage
create_awareness_report(
DD.dict,
DS.data,
non.NA.missing.codes = NA,
threshold = 95,
output.path = tempdir(),
open.html = TRUE,
fn.stem = "AwarenessReport"
)
Arguments
DD.dict |
Data dictionary. |
DS.data |
Data set. |
non.NA.missing.codes |
A user-defined vector of numerical missing value codes (e.g., -9999). |
threshold |
Threshold for missingness of concern (as a percent). |
output.path |
Path to the folder in which to create the HTML report document. |
open.html |
If TRUE, open the HTML report document in the web browser. |
fn.stem |
File name stem. |
Value
Full path to the HTML report document.
See Also
Examples
data(ExampleB)
create_awareness_report(DD.dict.B, DS.data.B, non.NA.missing.codes=c(-9999),
output.path= tempdir(), open.html = FALSE)
[Package dbGaPCheckup version 1.1.0 Index]