From 06fb600d841b62fcd4bff6e0fc53646463df546a Mon Sep 17 00:00:00 2001 From: Kunal Marwaha Date: Wed, 15 Jan 2020 10:32:53 -0800 Subject: [PATCH] Improve exercise wording (#781) Fixes #708 --- transform.Rmd | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/transform.Rmd b/transform.Rmd index 6ae1c6e..69b995e 100644 --- a/transform.Rmd +++ b/transform.Rmd @@ -242,9 +242,9 @@ arrange(df, desc(x)) 1. Sort `flights` to find the most delayed flights. Find the flights that left earliest. -1. Sort `flights` to find the fastest flights. +1. Sort `flights` to find the fastest (highest speed) flights. -1. Which flights travelled the longest? Which travelled the shortest? +1. Which flights travelled the farthest? Which travelled the shortest? ## Select columns with `select()` {#select}