Nothing
glue_collapse_data <- function(data, ..., sep = ", ", last = "") {
res <- glue::glue_collapse(glue::glue_data(data, ...), sep = sep, last = last)
if (length(res) == 0) {
return("")
}
unclass(res)
}
`%||%` <- function(x, y) if (is.null(x)) y else x
viapply <- function(x, f, ...) vapply(x, f, integer(1), ...)
vcapply <- function(x, f, ...) vapply(x, f, character(1), ...)
stop_unless_installed <- function(pkgs) {
has_pkg <- logical(length(pkgs))
for (i in seq_along(pkgs)) {
has_pkg[[i]] <- requireNamespace(pkgs[[i]], quietly = TRUE)
}
if (any(!has_pkg)) {
msg <- sprintf(
"The %s package(s) are required for this functionality",
paste(pkgs[!has_pkg], collapse = ", ")
)
if (is_interactive()) {
ans <- readline(paste(c(msg, "Would you like to install them? (y/N) "), collapse = "\n"))
if (tolower(ans) == "y") {
utils::install.packages(pkgs[!has_pkg])
stop_unless_installed(pkgs)
return()
}
}
stop(msg, call. = FALSE)
}
}
is_windows <- function() {
.Platform$OS.type == "windows"
}
# This is basically the same as rlang::is_interactive(), which we can't really
# use for stop_if_not_installed(), because rlang itself could be one of the
# input pkgs.
is_interactive <- function() {
opt <- getOption("rlang_interactive", NULL)
if (!is.null(opt)) {
return(opt)
}
if (isTRUE(getOption("knitr.in.progress"))) {
return(FALSE)
}
if (isTRUE(getOption("rstudio.notebook.executing"))) {
return(FALSE)
}
if (identical(Sys.getenv("TESTTHAT"), "true")) {
return(FALSE)
}
interactive()
}
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.