We don't want to create useless intermediate variables so we can use the pipe opperator: `%>%`
We don't want to create useless intermediate variables so we can use the pipe operator: `%>%`
(`ctrl + shift + M`).
```{r pipe_example_b, eval=F, message=F, cache=T}
...
...
@@ -303,7 +303,7 @@ flights %>%
Behind the scenes, `x %>% f(y)` turns into `f(x, y)`, and `x %>% f(y) %>% g(z)` turns into `g(f(x, y), z)` and so on. You can use the pipe to rewrite multiple operations in a way that you can read left-to-right, top-to-bottom.