Nothing
pboptions <-
function(...)
{
opar <- getOption("pboptions")
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("pboptions"=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.