Remove too early functions from an exercise

Fixes #768
This commit is contained in:
Hadley Wickham 2021-04-18 09:48:54 -05:00
parent ef21701d2a
commit 18bbea1272
1 changed files with 2 additions and 5 deletions

View File

@ -171,13 +171,10 @@ Here you can see all of the objects that you've created.
2. Tweak each of the following R commands so that they run correctly:
```{r, eval = FALSE}
library(tidyverse)
libary(tidyverse)
ggplot(dota = mpg) +
geom_point(mapping = aes(x = displ, y = hwy))
fliter(mpg, cyl = 8)
filter(diamond, carat > 3)
geom_point(maping = aes(x = displ, y = hwy))
```
3. Press Alt + Shift + K.