#' Check all elements for length equality
#'
#' @param ... any number of vectors.
#'
#' @return TRUE or FALSE
#' @noRd
check_same_length <- function(...) {
sapply(list(...), length) %>%
unique() %>%
length() == 1
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.