small typo fix (#1635)

This commit is contained in:
kew24 2024-02-26 15:27:18 -05:00 committed by GitHub
parent f40e78af08
commit 33e701227a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -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 |>