From 02cabd460f23e89b8c06b0083e156d1dee1cb480 Mon Sep 17 00:00:00 2001 From: Garrett Grolemund Date: Thu, 3 Nov 2016 12:57:56 -0500 Subject: [PATCH] Adds missing of to transform.Rmd --- transform.Rmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/transform.Rmd b/transform.Rmd index 30fac27..822f0b4 100644 --- a/transform.Rmd +++ b/transform.Rmd @@ -277,7 +277,7 @@ There are a number of helper functions you can use within `select()`: See `?select` for more details. -`select()` can be used to rename variables, but it's rarely useful because it drops all the variables not explicitly mentioned. Instead, use `rename()`, which is a variant of `select()` that keeps all the variables that aren't explicitly mentioned: +`select()` can be used to rename variables, but it's rarely useful because it drops all of the variables not explicitly mentioned. Instead, use `rename()`, which is a variant of `select()` that keeps all the variables that aren't explicitly mentioned: ```{r} rename(flights, tail_num = tailnum)