From 25b1f7fb1c18d5fc7bb7e3ab7650d9d3c6e06d2c Mon Sep 17 00:00:00 2001 From: "A. s" Date: Wed, 3 May 2017 09:59:03 -0300 Subject: [PATCH] added hint for cummulative functions (#514) --- transform.Rmd | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/transform.Rmd b/transform.Rmd index aad611f..6eb3513 100644 --- a/transform.Rmd +++ b/transform.Rmd @@ -832,7 +832,8 @@ daily %>% `flights %>% group_by(carrier, dest) %>% summarise(n())`) 1. For each plane, count the number of flights before the first delay - of greater than 1 hour. + of greater than 1 hour. (Hint: read about cummulative window functions and + see how their negations work, `vignette("window-functions")`) 1. What does the `sort` argument to `count()` do. When might you use it?