| get_dupes {janitor} | R Documentation |
data.frame with identical values for the specified variables.For hunting duplicate records during data cleaning. Specify the data.frame and the variable combination to search for duplicates and get back the duplicated rows.
get_dupes(dat, ...)
dat |
the input data.frame. |
... |
unquoted variable names to search for duplicates. |
Returns a data.frame (actually a tbl_df) with the full records where the specified variables have duplicated values, as well as a variable dupe_count showing the number of rows sharing that combination of duplicated values.
get_dupes(mtcars, mpg, hp) # or called with the magrittr pipe %>% : mtcars %>% get_dupes(wt)