R/draw_app.R

Defines functions draw_app

Documented in draw_app

#' open shiny app
#'
#' @export
draw_app <- function() {
  appDir <- system.file("app", package = "rusk")
  if (appDir == "") {
    stop("Could not find . Try re-installing `rusk`.", call. = FALSE)
  }
  shiny::runApp(appDir, display.mode = "normal")
}

Try the rusk package in your browser

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

rusk documentation built on May 1, 2019, 7:49 p.m.