Nothing
library <- function(...) {
res <- withVisible(base::library(...))
callHooks("base::library:onLoad")
value <- res$value
if (res$visible) {
return(value)
} else {
return(invisible(value))
}
} # library()
require <- function(...) {
res <- withVisible(base::require(...))
callHooks("base::library:onLoad")
value <- res$value
if (res$visible) {
return(value)
} else {
return(invisible(value))
}
} # library()
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.