Nothing
.glue2 <- function(..., env = caller_env()) {
glue(..., .envir = env, .open = "[", .close = "]")
}
`%&&%` <- function(x, y) {
if (is.null(x)) {
NULL
} else {
y
}
}
.find_failures <- function(x, check_value, check_fn) {
failures <- check_value %&&% check_fn(x, check_value)
if (any(failures)) {
return(which(failures))
}
return(NULL)
}
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.