one_of() is retired (#867)

Further to {tidyselect} documentation "one_of() is retired in favour of the more precise any_of() and all_of() selectors." this exercise (5.4.1) should be updated to be in-line with current functionality.
This commit is contained in:
nattalides 2020-10-03 15:35:04 +01:00 committed by GitHub
parent 2330e438c3
commit 84f0ba1ba7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -297,7 +297,7 @@ select(flights, time_hour, air_time, everything())
1. What happens if you include the name of a variable multiple times in
a `select()` call?
1. What does the `one_of()` function do? Why might it be helpful in conjunction
1. What does the `any_of()` function do? Why might it be helpful in conjunction
with this vector?
```{r}