From d9d44a0fdd6b4d09c466f7658492d01d8ca3516e Mon Sep 17 00:00:00 2001 From: alberto-agudo <91462184+alberto-agudo@users.noreply.github.com> Date: Wed, 22 Mar 2023 21:57:30 +0100 Subject: [PATCH] Wrong dataset fix (#1383) This exercise asks to create a decimal time out of clock time from the `sched_dep_time` variable. However, it is calling this on the `weather` dataset, where it should be the `flights` one. Otherwise, the user will get an error. --- functions.qmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions.qmd b/functions.qmd index 7b32844..54eb793 100644 --- a/functions.qmd +++ b/functions.qmd @@ -611,7 +611,7 @@ While our examples have mostly focused on dplyr, tidy evaluation also underpins ```{r} #| eval: false - weather |> standardize_time(sched_dep_time) + flights |> standardize_time(sched_dep_time) ``` 2. For each of the following functions list all arguments that use tidy evaluation and describe whether they use data-masking or tidy-selection: `distinct()`, `count()`, `group_by()`, `rename_with()`, `slice_min()`, `slice_sample()`.