From fe5bafda98f4b11ed54233f00d687706ee8295c5 Mon Sep 17 00:00:00 2001 From: Robert Schuessler Date: Mon, 3 Oct 2016 08:14:15 -0400 Subject: [PATCH] fix typo: s (#404) Is it a pair of variables here? It seems like you're saying you gather the two columns into a single new variable, year. --- tidy.Rmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tidy.Rmd b/tidy.Rmd index 3e1189f..0a4a1ef 100644 --- a/tidy.Rmd +++ b/tidy.Rmd @@ -131,7 +131,7 @@ A common problem is a dataset where some of the column names are not names of va table4a ``` -To tidy a dataset like this, we need to __gather__ those column into a new pair of variables. To describe that operation we need three parameters: +To tidy a dataset like this, we need to __gather__ those columns into a new pair of variables. To describe that operation we need three parameters: * The set of columns that represent values, not variables. In this example, those are the columns `1999` and `2000`.