#' Rdata Loader
#'
#'Loads loads an RData file and returns it (can assign it to a new variable)
#' @param fileName Rdata object
#'
#' @return
#' @export
#'
loadRData <- function(fileName){
#
load(fileName)
return (get(ls()[ls() != "fileName"]))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.