R/launchApp.R

Defines functions launchApp

Documented in launchApp

#' launchApp
#'
#' Launches Shiny web application using the server.R and ui.R files located in
#' the /application subdirectory.
#'
#' @return Shiny web application
#'
#' @example
#' launchApp()
#'
#' @export

launchApp <- function() {
  runApp(appDir = system.file("application", package = "svir"), display.mode = "normal")
}
amywleung/svir documentation built on May 28, 2019, 4:56 p.m.