Nothing
scoped_tempdir <- function (code){
new <- tempfile(pattern = "file", tmpdir = tempdir(), fileext = "")
dir.create(new)
on.exit(unlink(new, recursive = TRUE), add = TRUE)
old <- setwd(dir = new)
on.exit(setwd(old))
force(code)
}
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.