Nothing
detacher <- function(pkgs) {
lapply(pkgs, function(pkg) {
try(detach(paste0("package:", pkg), unload = TRUE, character.only = TRUE), silent = TRUE)
})
}
attacher <- function(pkgs) {
lapply(pkgs, function(pkg) {
suppressPackageStartupMessages(suppressWarnings(require(
pkg,
character.only = TRUE, quietly = 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.