Nothing
cache <- new.env()
.onLoad <- function(libname, pkgname)
{
#
}
.onAttach <- function(libname, pkgname)
{
# Set the default location of the base directory
path <- switch(.Platform[['OS.type']], unix = path.expand("~"),
windows= file.path(gsub("\\\\", "/",
Sys.getenv("USERPROFILE")), "AppData"))
opt <- getOption("DEsubs_CACHE", paste0(path, '/DEsubs'))
baseDir <- Sys.getenv("DEsubs_CACHE", opt)
cache[['baseDir']] <- baseDir
cache[['outDir']] <- paste0(baseDir, '//Output')
cache[['datDir']] <- paste0(baseDir, '//Data')
}
.onUnload <- function(libname)
{
#
}
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.