Update workflow-basics.Rmd (#681)

Fixed typo `dota` to `data`
This commit is contained in:
Jonas 2018-06-20 11:15:37 +02:00 committed by Hadley Wickham
parent e92922f2ae
commit bbc87c9049
1 changed files with 1 additions and 1 deletions

View File

@ -146,7 +146,7 @@ Here you can see all of the objects that you've created.
```{r, eval = FALSE}
library(tidyverse)
ggplot(dota = mpg) +
ggplot(data = mpg) +
geom_point(mapping = aes(x = displ, y = hwy))
fliter(mpg, cyl = 8)