-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Transferred duplicates()
from poisdata
#17
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this is a great idea and like the name. However I think we should be use tidy evaluation so that the argument should be
duplicates(.data, ...)
so that we can call it as follows
duplicates(x, column1, anothercolumn)
It's probably worth looking to distinct for inspiration.
@dunkenwg I don't see any changes since the last review. Did you forget to push them? |
@aylapear I think I accidentally asked for your review. I'll work on this today and tomorrow and let you know if I get it done or run into any troubles. |
…ut arguments and follows tidy evaluation
`duplicates()` handles columns with missing values in a similar manner to `dplyr::distinct()`
- Added `.keep_all` argument to `duplicates()`
duplicates()
and associated tests from poisdata