Nothing
dcoptions <-
function(...)
{
opar <- getOption("dcoptions")
args <- list(...)
if (length(args)) {
if (length(args) == 1 && is.list(args[[1]])) {
npar <- args[[1]]
} else {
npar <- opar
npar[match(names(args), names(npar))] <- args
}
options("dcoptions" = npar)
}
invisible(opar)
}
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.