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:
parent
c6985f2b59
commit
fe5bafda98
2
tidy.Rmd
2
tidy.Rmd
|
@ -131,7 +131,7 @@ A common problem is a dataset where some of the column names are not names of va
|
||||||
table4a
|
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,
|
* The set of columns that represent values, not variables. In this example,
|
||||||
those are the columns `1999` and `2000`.
|
those are the columns `1999` and `2000`.
|
||||||
|
|
Loading…
Reference in New Issue