R/launchApp.R

Defines functions launchApp

Documented in launchApp

#' launches the GDE app
#'
#' @export launchApp
#'
#' @return shiny application object
#'
# @example \dontrun {launchApp()}
#'
#' @import shiny
#'

#Based on https://github.com/MangoTheCat/shinyAppDemo/

# wrapper for shiny::shinyApp()
launchApp <- function() {
  
  shinyApp(ui = shinyAppUI, server = shinyAppServer, options = list(launch.browser = TRUE))
}

Try the gde package in your browser

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

gde documentation built on April 1, 2023, 12:17 a.m.