Nothing
#' Shiny app for Ntrade
#'
#' Interactive application for the calculation and redistribution of the potentially
#' infected/infested quantity of commodities imported by a country from third countries
#' where the pest is present (\eqn{N_{trade}}) using the NUTS coding system. See
#' [Nomenclature of territorial units for statistics](https://ec.europa.eu/eurostat/web/nuts).
#'
#' @return No return value, called for side effects
#'
#' @seealso [ntrade()], [redist_nuts()], [redist_iso()]
#'
#' @export
#'
#' @examples
#' if (interactive()) {
#' ntrade_app()
#' }
#' @importFrom shiny runApp shinyApp
ntrade_app <- function(){
app <- shinyApp(
ui = ntradeapp_ui,
server = ntradeapp_server
)
runApp(app,
display.mode = "normal",
launch.browser = TRUE)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.