make_report.RdBuild a Carob HTML from data supplied in memory
make_report(records, metadata = NULL, issues = NULL, group = "",
path = NULL, file = NULL, check = "nogeo", open = FALSE)data.frame. Wide-format observation records.
optional data.frame with one row, or a list, with Carob metadata fields.
optional data.frame with columns check and msg from
check_terms. If missing, check_terms is run.
character. Group name for checks, evaluation, and script links.
character. Directory for the HTML file. Defaults to tempdir().
character. Output file name.
character. Check level passed to check_terms when
issues is not supplied.
logical. Open the report in a browser?
The path to the written HTML file (invisibly).
if (FALSE) { # \dontrun{
records <- utils::read.csv(system.file("ex/records.csv", package = "carobiner"))
make_report(records, open = TRUE)
} # }