-
Notifications
You must be signed in to change notification settings - Fork 286
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
Request for argument synchronization with dplyr #1497
Comments
I guess you could argue that |
Our justification for the different names can be found at https://design.tidyverse.org/dots-prefix.html. |
For posterity: Based on my reading of that link, they are different because |
Exactly! We don't want to accidentally interfere if you are trying to do |
I do a lot of teaching with tidyverse tools and one thing that is not ideal is that some arguments are different across tidyverse packages. For example, I teach about how to combine tibbles using
dplyr::bind_rows()
and the.id
argument. Then I introduce the idea of giving a vector of file names toreadr::read_csv()
to do the same kind of thing from data files. This is great but then I have to tell the students that the argument here isid
not.id
. It would be very helpful if arguments like this could be synchronized across core tidyverse packages.The text was updated successfully, but these errors were encountered: