-
Notifications
You must be signed in to change notification settings - Fork 49
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
R check reveals unresolved code issues #1019
Comments
So this is a bit of an annoying one. The tidyselect package started throwing warnings for using |
I think you should just use quotes? So data %>%
select(.data$field) becomes data %>%
select("field") Which shouldn't trigger R check warnings. |
So this works for inside select statements, but not inside |
So for dplyr There are also other notes and warnings in R check that can quite easily be resolved. |
R check (in develop) currently shows these code issues. I would resolve all of them. Most are probably nonsense, but if you don't fix those you won't see the ones that aren't:
The text was updated successfully, but these errors were encountered: