We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Per Hadley's comment on the manipulatr thread, select is supposed to return the first instance of a name mentioned, i.e.,
names( select(iris, starts_with("S"), sepal.wid = Sepal.Width)) [1] "Sepal.Length" "Sepal.Width" "Species"
is correct. However, when you use the not option, it gets overruled when additional conditions are specified, i.e.
> names( select(iris, -starts_with("P"), Sepal.Width)) [1] "Sepal.Width"
should return all names that don't start with P.
The text was updated successfully, but these errors were encountered:
This now doesn't seem right to me - inclusion/exclusion should be applied from left-to-right, so that the last name should win
Sorry, something went wrong.
Closed in 713a15c etc
hadley
No branches or pull requests
Per Hadley's comment on the manipulatr thread, select is supposed to return the first instance of a name mentioned, i.e.,
is correct. However, when you use the not option, it gets overruled when additional conditions are specified, i.e.
should return all names that don't start with P.
The text was updated successfully, but these errors were encountered: