#' @importFrom assertthat assert_that on_failure<-
is_string <- function(x) {
is.character(x) && length(x) == 1 && !is.na(x)
}
on_failure(is_string) <- function(call, env) {
paste0(deparse(call$x), " is not a string (length 1 character)")
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.