show_duplicated: Show all rows with duplicated values (not just the first or...

View source: R/transform.R

show_duplicatedR Documentation

Show all rows with duplicated values (not just the first or last)

Description

Show all rows with duplicated values (not just the first or last)

Usage

show_duplicated(.tbl, ...)

Arguments

.tbl

Data frame to add transformed variables to

...

Variables used to evaluate row uniqueness

Details

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

Examples

bind_rows(mtcars, mtcars[c(1, 5, 7), ]) %>%
  show_duplicated(mpg, cyl)
bind_rows(mtcars, mtcars[c(1, 5, 7), ]) %>%
  show_duplicated()


radiant-rstats/radiant.data documentation built on Jan. 19, 2024, 12:21 p.m.