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.
This commit is contained in:
Robert Schuessler 2016-10-03 08:14:15 -04:00 committed by Hadley Wickham
parent c6985f2b59
commit fe5bafda98
1 changed files with 1 additions and 1 deletions

View File

@ -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`.