Nothing
# SILENT FUNCTIONS
# No Warnings and Messages -----------------------------------------------------
be_silent <- function(obj) {
suppressMessages(suppressWarnings(obj))
}
# ------------------------------------------------------------------------------
# Try Without Warnings and Messages --------------------------------------------
try_and_be_silent <- function(obj) {
suppressMessages(suppressWarnings(try(obj, silent = TRUE)))
}
# ------------------------------------------------------------------------------
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.