Nothing
## helper to parse parameter lists with defaults
.nodots <- function(...) {
l <- list(...)
if (length(l) > 0L) {
warning("In ", deparse(sys.calls()[[sys.nframe()-1]]), ":\n",
" Unknown arguments: ",
paste(names(l), "=", l, collapse = ", "), call. = FALSE)
}
}
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.