Nothing
## set default options for faux_options:
.onLoad <- function(libname, pkgname) {
op <- options()
op.faux <- list(
faux.connection = stdin(),
faux.sep = "_",
faux.plot = TRUE,
faux.verbose = TRUE
)
toset <- !(names(op.faux) %in% names(op))
if(any(toset)) options(op.faux[toset])
invisible()
}
.onAttach <- function(libname, pkgname) {
paste(
"\n************",
"Welcome to faux. For support and examples visit:",
"https://debruine.github.io/faux/",
"- Get and set global package options with: faux_options()",
"************",
sep = "\n"
) %>% packageStartupMessage()
}
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.