Nothing
.abstract_erase <- function(filtering.function = NULL, list.function = ls, pattern = NULL,
envir = as.environment(-1), verbose = FALSE){
if (is.null(pattern))
objects <- list.function(envir = envir)
else
objects <- list.function(envir = envir, pattern = pattern)
if (!is.null(filtering.function))
objects <- Filter(filtering.function, objects)
if (verbose)
print(sprintf("Removed objects: %s", paste(objects, collapse = ", ")))
rm(list = objects, envir = envir)
}
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.