Skip to content

Commit

Permalink
small typo fix (#1635)
Browse files Browse the repository at this point in the history
  • Loading branch information
kew24 committed Feb 26, 2024
1 parent f40e78a commit 33e7012
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion data-transform.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -467,7 +467,7 @@ ggplot(flights, aes(x = air_time - airtime2)) + geom_histogram()
## 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.
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}
flights |>
Expand Down

0 comments on commit 33e7012

Please sign in to comment.