From 32c6717a56e4908bdf47641fefd1449f4fc86602 Mon Sep 17 00:00:00 2001 From: Colin Gillespie Date: Wed, 8 Oct 2014 13:04:15 +0100 Subject: [PATCH] Update introduction.Rmd Minor typo. Theese -> These --- vignettes/introduction.Rmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vignettes/introduction.Rmd b/vignettes/introduction.Rmd index 8123fc2efd..92369fe439 100644 --- a/vignettes/introduction.Rmd +++ b/vignettes/introduction.Rmd @@ -141,7 +141,7 @@ select(flights, -(year:day)) This function works similarly to the `select` argument to the `base::subset()`. It's its own function in dplyr, because the dplyr philosophy is to have small functions that each do one thing well. -There are a number of helper functions you can use within `select()`, like `starts_with()`, `ends_with()`, `matches()` and `contains()`. Theese let you quickly match larger blocks of variable that meet some criterion. See `?select` for more details. +There are a number of helper functions you can use within `select()`, like `starts_with()`, `ends_with()`, `matches()` and `contains()`. These let you quickly match larger blocks of variable that meet some criterion. See `?select` for more details. You can rename variables with `select()` by using named arguments: