#' MAsP Web Application
#'
#' This function initiates the R shiny app 'MAsP'.
#'
#'
#' @export
MAsPShiny <- function(){
options(shiny.maxRequestSize=100000*1024^2)
appDir <- system.file("shiny", "MAsP",package = "MAsP")
if (appDir == "") {
stop("Could not find UI directory. Try re-installing `MAsP`.", 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.