Nothing
#' phenology runs a shiny application for basic functions of phenology package
#' @title Run a shiny application for basic functions of phenology package
#' @author Marc Girondot
#' @return Nothing
#' @description Run a shiny application for basic functions of phenology package.
#' Thanks to Adriana Cortés Gomés and Joana Hancock for their help with translation.
#' @family Phenology model
#' @examples
#' \dontrun{
#' library(phenology)
#' phenology()
#' }
#' @export
phenology <- function() {
if (!requireNamespace("shiny", quietly = TRUE)) {
stop("shiny package is absent; Please install it first")
}
getFromNamespace("runApp", ns="shiny")(appDir = system.file("shiny", package="phenology"),
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.