R/runSudoku.R

Defines functions runSudoku

Documented in runSudoku

#' runSudoku()
#'
#' @return Opens the sudoku shiny application
#' @export
runSudoku <- function() {
  appDir <- system.file("shiny", "RSDK", package = "RSDK")
  if (appDir == "") {
    stop("Could not find example directory. Try re-installing `RSDK`.", call. = FALSE)
  }

  shiny::runApp(appDir, display.mode = "normal")
}

Try the RSDK package in your browser

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

RSDK documentation built on March 18, 2022, 5:08 p.m.