Created
September 16, 2019 16:17
-
-
Save statgeek/a66870b871d479c3648eec206a8d83ef to your computer and use it in GitHub Desktop.
R - finding duplicates - tidyverse
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ##This program illustrates how to find duplicates in your data set for a particular key | |
| ##All duplicate records will be indentified | |
| mtcars %>% | |
| group_by(carb) %>% | |
| filter(n()>1) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment