Nothing
#' Create directory if it doesn't exist
#'
#' @param path The path to be created
#' @param recur Boolean: create directories recursively?
create_if_not <- function(path, recur = FALSE) {
if (!dir.exists(path)) {
dir.create(path, recursive = recur)
}
}
#' Check if unifir should run in debug mode
#'
#' When running in debug mode, unifir will write nothing to disk.
check_debug <- function() {
debug <- FALSE
if (Sys.getenv("unifir_debugmode") != "" ||
!is.null(options("unifir_debugmode")$unifir_debugmode)) {
debug <- TRUE
}
debug
}
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.