#' Duplicates
#'
#' DEPRECATED
#'
#' @param x A data.frame.
#' @param cols A character vector of the column names.
#' @return A tibble with just the duplicate rows included.
#' @export
ps_duplicates <- function(x, cols = colnames(x)) {
  lifecycle::deprecate_soft(
    "0.0.1.9001",
    "ps_duplicates()",
    "tidyplus::duplicates()"
  )
  check_data(x)
  chk_vector(cols)
  check_values(cols, "")
  check_names(x, cols)
  x %<>% tibble::as_tibble()
  cols %<>% unique()
  if (!length(cols)) {
    return(x)
  }
  y <- x[cols]
  y <- y[duplicated(y), , drop = FALSE] %>%
    unique()
  x %<>% merge(y, by = cols)
  x %<>% dplyr::as_tibble()
  x
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.