Nothing
#' Check for names
#'
#' @param x object to check
#' @param names names to look for
#'
#' @keywords internal
#' @noRd
#'
#' @return boolean, TRUE for error
.check_names <- function(x, names) {
if (inherits(x, "list")) {
if (any(unlist(lapply(x, function(y) !all(names %in% names(y)))))) {
return(TRUE)
}
} else {
if (!all(names %in% names(x))) {
return(TRUE)
}
}
FALSE
}
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.