R/shiny.R

Defines functions shiny_DERT

Documented in shiny_DERT

#' Run DERT (Shiny/web) application
#'
#' The DERT application allow the user to run multiple operations using a simple
#' Shiny app (point and click). This application can help users that are not
#' familiar with R.
#' @export
shiny_DERT <- function() {
  appDir <- system.file("app", package = "DERTtools")
  if (appDir == "") {
    stop(
      "Could not find app. Try re-installing `DERTtools`.",
      call. = FALSE
    )
  }

  shiny::runApp(appDir, display.mode = "normal")
}
renejuan/DERTtools documentation built on March 19, 2022, 7:20 a.m.