From 33e701227a3a69e607485499c006fe6e9a284d3b Mon Sep 17 00:00:00 2001 From: kew24 <56448994+kew24@users.noreply.github.com> Date: Mon, 26 Feb 2024 15:27:18 -0500 Subject: [PATCH] small typo fix (#1635) --- data-transform.qmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data-transform.qmd b/data-transform.qmd index c52b356..76e485f 100644 --- a/data-transform.qmd +++ b/data-transform.qmd @@ -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 |>