powered by
Lists all duplicates as a list of tuples.
list_duplicates(x, ...)# S3 method for character list_duplicates(x, ...)# S3 method for tbl list_duplicates(x, ...)# S3 method for data.frame list_duplicates(x, ...)
# S3 method for character list_duplicates(x, ...)
# S3 method for tbl list_duplicates(x, ...)
# S3 method for data.frame list_duplicates(x, ...)
list of row numbers with duplicates
list
object of class character, tibble or data.frame)
character
tibble
data.frame
further arguments passed to or from other methods.
list_duplicates(character): list duplicates for a character vector.
list_duplicates(character)
list_duplicates(tbl): lists duplicates for a tibble.
list_duplicates(tbl)
list_duplicates(data.frame): lists duplicates for a data.frame.
list_duplicates(data.frame)
list_duplicates(c("a", "b", "c")) # list() list_duplicates(c("a", "b", "a", "c")) # list(c(1, 3))
Run the code above in your browser using DataLab