A report used in ABM

abm_report(id, is_private)

Arguments

id

the identifier for the report, either unit_code or kthid

is_private

logical indicating whether the report is publicly visible or not

Value

a raw object with a BLOB containing a HTML report rendered using Rmarkdown.

See also

Examples

if (FALSE) { # \dontrun{
if(interactive()){
 r1 <- abm_report(id = "177", is_private = FALSE)
 view_report(list(r1))
 r2 <- abm_report("u1o2ujjd", is_private = TRUE)
 }
} # }