Nothing
# miscellaneous ----------------------------------------------------------------
interactive <- NULL
global_env <- function() {
.GlobalEnv
}
file_extension <- function(file_path) {
check_character(file_path)
ext <- strsplit(basename(file_path), "\\.")[[1]]
if (length(ext) <= 1) {
return("")
}
tolower(ext[length(ext)])
}
default_gander_style <- function() {
paste0(
"Use tidyverse style and, when relevant, tidyverse packages. For example, ",
"when asked to plot something, use ggplot2, or when asked to transform ",
"data, using dplyr and/or tidyr unless explicitly instructed otherwise. "
)
}
default_gander_dims <- c(5L, 100L)
get_gander_style <- function() {
res <- getOption(".gander_style")
if (!is.null(res)) {
check_string(res, arg = 'getOption(".gander_style")', call = call2("gander_addin"))
return(res)
}
default_gander_style()
}
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.