Show all rows with duplicated values (not just the first or last)
Show all rows with duplicated values (not just the first or last)
show_duplicated(.tbl, ...)
.tbl |
Data frame to add transformed variables to |
... |
Variables used to evaluate row uniqueness |
If an entire row is duplicated use "duplicated" to show only one of the duplicated rows. When using a subset of variables to establish uniqueness it may be of interest to show all rows that have (some) duplicate elements
bind_rows(mtcars, mtcars[c(1,5,7),]) %>% show_duplicated(mpg, cyl) bind_rows(mtcars, mtcars[c(1,5,7),]) %>% show_duplicated
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.