R/report_interactive.R

Defines functions report_interactive

Documented in report_interactive

#' Run interactive report
#'
#' @param db fully qualified path to the sqlite database. The report will be saved to the same directory.
#'
#' @return invisibly \code{NULL}
#'
#' @importFrom rmarkdown run
#' @export
#'
#' @examples
report_interactive <- function(db) {
  rmarkdown::run(
    file = system.file("InteractiveReport.Rmd", package = "LEEF.analysis")
  )
  return(NULL)
}
LEEF-UZH/LEEF.analysis documentation built on Feb. 8, 2025, 11:18 a.m.