#' mappings
#'
#' preloaded_data that allows Argus to load up data from a github or zenodo link.
#' Argus data is maintained on the https://github.com/JGCRI/argusdata repo
#' If new data is added to the repo users can directly change this file and
#' commit on github at : https://github.com/JGCRI/argus/blob/main/R/preloaded_data.R
#'
#' @keywords preloaded data
#' @return A dataframe with preloaded data
#' @export
#' @examples
#' library(rmap)
#' preloaded_data()
preloaded_data <- function(){
preloaded_data <- tibble::tribble(
~"group", ~"name", ~"link",
"examples", "exampleData", "https://github.com/JGCRI/argusdata/raw/main/argus_bookmark_exampleData.rds",
"examples", "argus_example_EU", "https://github.com/JGCRI/argusdata/raw/main/argus_example_EU.rds")
invisible(preloaded_data)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.