small typo fix (#1635)
This commit is contained in:
parent
f40e78af08
commit
33e701227a
|
@ -467,7 +467,7 @@ ggplot(flights, aes(x = air_time - airtime2)) + geom_histogram()
|
||||||
## The pipe {#sec-the-pipe}
|
## The pipe {#sec-the-pipe}
|
||||||
|
|
||||||
We've shown you simple examples of the pipe above, but its real power arises when you start to combine multiple verbs.
|
We've shown you simple examples of the pipe above, but its real power arises when you start to combine multiple verbs.
|
||||||
For example, imagine that you wanted to find the fast flights to Houston's IAH airport: you need to combine `filter()`, `mutate()`, `select()`, and `arrange()`:
|
For example, imagine that you wanted to find the fastest flights to Houston's IAH airport: you need to combine `filter()`, `mutate()`, `select()`, and `arrange()`:
|
||||||
|
|
||||||
```{r}
|
```{r}
|
||||||
flights |>
|
flights |>
|
||||||
|
|
Loading…
Reference in New Issue