R/runSpotGUI.R

Defines functions runSpotGUI

Documented in runSpotGUI

#' runSpotGUI
#'
#' Run the starting command of the SPOT-GUI. Opens the graphical shiny application through which the user
#' can acess the SPO Toolbox.
#'
#' @usage
#' runSpotGUI()
#'
#' @import shiny
#' @import shinydashboard
#' @import SPOT
#' @import gridExtra
#' @importFrom shinyjs enable
#' @importFrom shinyjs disable
#' @import rhandsontable
#' @import XML
#' @import rclipboard
#' @import plotly
#' @import shinyBS
#' @importFrom smoof makeFunctionsByName
#' @importFrom smoof filterFunctionsByTags
#' @importFrom smoof getLowerBoxConstraints
#' @importFrom smoof getUpperBoxConstraints
#' @importFrom tools Rd_db
#' @importFrom httpuv service
#' @importFrom utils capture.output
#' @importFrom utils installed.packages
#' @importFrom methods getPackageName
#' @import shinyFiles
#'
#' @export
runSpotGUI <- function() {
    appDir <- system.file(package = "spotGUI")
    if (appDir == "") {
        stop("Could not find app directory. Try re-installing `spotGUI`.", call. = FALSE)
    }
    shiny::runApp(appDir, display.mode = "normal")
}

Try the spotGUI package in your browser

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

spotGUI documentation built on March 31, 2021, 1:06 a.m.