R/launch_app.R

Defines functions launch_app

Documented in launch_app

#' Launch Reactor Data Shiny App
#'
#' @return a shiny app
#' @export
launch_app = function(){
  check_package("shiny")
  app = system.file(
    "shiny",
    "shinyApp.R",
    package = "ggVennDiagram",
    mustWork = TRUE
  )
  if(interactive()) shiny::runApp(app)
}

Try the ggVennDiagram package in your browser

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

ggVennDiagram documentation built on May 29, 2024, 10:21 a.m.