Nothing
# exclude functions from specific packages
setdiff_specific <- function(funs, pkg, excl) {
# functions to exclude from the current package
to_exclude <- unlist(excl[names(excl) %in% pkg])
# excludable functions in the current package
matches <- funs %in% to_exclude
# functions that are not in the specified package
if (sum(matches) != length(to_exclude)) {
funs_not_found <- to_exclude[!to_exclude %in% funs]
warning(sprintf("Excludable function %s is not exported by package %s\n",
funs_not_found,
pkg))
}
return(funs[!matches])
}
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.