Nothing
assert_suggested <- function(package) {
calling_fn <- deparse(sys.calls()[[sys.nframe()-1]])
if (!requireNamespace(package, quietly = TRUE)) {
msg <- c(sprintf("You need to install the suggested package %s to use %s.",
sQuote(package), sQuote(calling_fn)),
i = sprintf("Use %s.", sQuote(sprintf('install.packages("%s")', package))))
stop(msg)
}
}
is_utc <- function(tz) {
tz %in% c("UTC", "GMT", "Etc/UTC", "Etc/GMT", "GMT-0", "GMT+0", "GMT0")
}
`%||%` <- function(x, y) if (is.null(x)) y else x
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.