#' Identify all duplicates
#'
#' Identifies all duplicates, see [base::duplicated()] for details.
#'
#' @inheritParams base::duplicated
#'
#' @export
all_duplicated <- function(x, ...) {
duplicated(x) | duplicated(x, fromLast = TRUE)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.