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'))
  
}

Try the PopED package in your browser

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

PopED documentation built on May 21, 2021, 5:08 p.m.