#' Count NAs in vectors
#'
#' @param ... Vectors
#' @return Are there any NAs in any vectors?
any_nas <- function(...){
values <- list(...)
any(is.na(unlist(values)))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.