#' load RData-files to globalenv
#'
#' @description load all RData-files within a directory (recursive) into globalenv.
#'
#' @param path Character. Specify file path where RData-files are stored.
#'
#' @author Frederik Sachser
#' @export
RDataload <- function(path = "inst/extdata") {
sapply(list.files(path = path, pattern = ".RData", full.names = TRUE, recursive = TRUE), load, envir = .GlobalEnv)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.