Nothing
check_file <- function(path) {
if (!is_string(path)) {
stop("`path` must be a string", call. = FALSE)
}
if (!file.exists(path)) {
stop("`path` does not exist: ", sQuote(path), call. = FALSE)
}
path
}
is_integerish <- function(x) {
floor(x) == x
}
is_string <- function(x) {
length(x) == 1 && is.character(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.