R/runbdchecks.R

Defines functions runbdchecks

Documented in runbdchecks

#' Launch bdchecks Shiny Application
#'
#' `bdchecks` is a function that starts biodiversity check `shiny` app.
#' 
#' @return `shiny::runApp()` result within browser.
#' 
#' @import bdDwC
#' @import shiny
#' @import shinyBS
#' @import shinydashboard
#' @importFrom data.table fread
#' @importFrom DT datatable 
#' @importFrom finch dwca_read
#' @importFrom rgbif occ_search
#' @importFrom shinyjs enable disabled useShinyjs
#' @importFrom spocc occ
#' 
#' @export
#' 
runbdchecks <- function() {
    pathApp <- system.file("shiny", package = "bdchecks")
    return(shiny::runApp(pathApp, launch.browser = TRUE))
}

Try the bdchecks package in your browser

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

bdchecks documentation built on May 2, 2019, 4:24 a.m.