#' Saves an R object as RData file in the working directory
#' @param robj R object
#' @export
save_robj <-
function(robj) {
fn <- paste0(deparse(substitute(robj)), ".RData")
saveRDS(robj, fn)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.