R/poped_gui.R

Defines functions poped_gui

Documented in poped_gui

#' Run the graphical interface for PopED
#'
#'
#' @export
#'

poped_gui <- function(){

  if (!requireNamespace("shiny", quietly = TRUE)) {
    stop("shiny package needed for this function to work. Please install it.",
         call. = FALSE)
  }
  if (!requireNamespace("rhandsontable", quietly = TRUE)) {
    stop("rhandsontable package needed for this function to work. Please install it.",
         call. = FALSE)
  }
  shiny::runApp(system.file('shinyapp', package='PopED'))
  
}
andrewhooker/PopED documentation built on Nov. 23, 2023, 1:37 a.m.