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.
This commit is contained in:
parent
c2eb96fa11
commit
d9d44a0fdd
|
@ -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()`.
|
||||
|
|
Loading…
Reference in New Issue