Nothing
mem <- function(f) {
memo <- new.env(parent = emptyenv())
function(...) {
key <- paste(list(...), collapse = " ,")
if(!exists(as.character(key), envir = memo)) {
memo[[as.character(key)]] <- f(...)
}
memo[[as.character(key)]]
}
}
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.