#' 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")
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.