From 84f0ba1ba7f73191777b8704d64cfcbf4e39db01 Mon Sep 17 00:00:00 2001 From: nattalides <34066833+nattalides@users.noreply.github.com> Date: Sat, 3 Oct 2020 15:35:04 +0100 Subject: [PATCH] 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. --- transform.Rmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/transform.Rmd b/transform.Rmd index 54ac76d..4dcc444 100644 --- a/transform.Rmd +++ b/transform.Rmd @@ -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}