You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The text was updated successfully, but these errors were encountered:
JohnMount
changed the title
dplyr::select() returns a wrong column, when instead it should throw a "no such column/value" style exception
dplyr::select() returns a wrong column, should probably throw a "no such column/value" style exception
Sep 23, 2018
This is the documented behavior. Columns have priority in dxy %>% select(y) so the y column is selected. There is no y in dx so y is evaluated (to "x").
This is in essence, tidyselect semantics, I guess what you describe is [ standard evaluation semantics.
This old issue has been automatically locked. If you believe you have found a related problem, please file a new issue (with reprex) and link to this issue. https://reprex.tidyverse.org/
lockbot
locked and limited conversation to collaborators
Mar 23, 2019
This issue was closed.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
dplyr::select()
returns a wrong column, should probably throw a "no such column/value" style exception.The text was updated successfully, but these errors were encountered: