R/launchApp.R

Defines functions launchApp

Documented in launchApp

#'  @title Launch the Shiny App
#'
#' @examples
#' \dontrun{
#' eVCGsampler::launchApp()
#' }
#' @export


launchApp <- function() {
  appDir <- system.file("app", package = "eVCGsampler")
  if (appDir == "") {
    stop("Could not find app directory. Try re-installing the package.", call. = FALSE)
  }
  shiny::runApp(appDir, display.mode = "normal")
}

Try the eVCGsampler package in your browser

Any scripts or data that you put into this service are public.

eVCGsampler documentation built on March 10, 2026, 5:07 p.m.