Nothing
suppressVerbose <- function(expr, envir = parent.frame(), suppress = TRUE) {
if (is.na(suppress)) suppress <- FALSE
expr <- substitute(expr)
if (suppress) {
expr <- bquote({
capture.output(suppressMessages({
res <- withVisible(.(expr))
}), type="output", split=FALSE)
res
})
} else {
expr <- bquote(withVisible(.(expr)))
}
res <- eval(expr, envir=envir, enclos=baseenv())
if (res$visible) res$value else invisible(res$value)
}
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.