Nothing
get_optional_argument <- function(optional_args, argname, val_if_null) {
rawval <- optional_args[[argname]]
if (is.null(rawval)) {
val_if_null
} else {
rawval
}
}
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.