Nothing
# from pkgmaker 0.31
ns_get <- function (x, ns = NULL, ...){
if (is.null(ns)) {
ns <- gsub("^([^:]+)::.*", "\\1", x)
x <- gsub(".*::([^:]+)$", "\\1", x)
}
if (!isNamespace(ns)) {
ns <- tryCatch(asNamespace(ns), error = function(e) NULL)
if (is.null(ns))
return()
}
get0(x, envir = ns, ...)
}
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.