Missing an s (#260)
This commit is contained in:
parent
2c754bac83
commit
3404a00283
2
tidy.Rmd
2
tidy.Rmd
|
@ -440,7 +440,7 @@ The best place to start is almost always to gathering together the columns that
|
||||||
|
|
||||||
* We don't know what all the other columns are yet, but given the structure
|
* We don't know what all the other columns are yet, but given the structure
|
||||||
in the variable names (e.g. `new_sp_m014`, `new_ep_m014`, `new_ep_f014`)
|
in the variable names (e.g. `new_sp_m014`, `new_ep_m014`, `new_ep_f014`)
|
||||||
these are likely to be values, not variable.
|
these are likely to be values, not variables.
|
||||||
|
|
||||||
So we need to gather together all the columns from `new_sp_m3544` to `newrel_f65`. We don't know what those values represent yet, so we'll give them the generic name `"key"`. We know the cells repesent the count of cases, so we'll use the variable `cases`. There are a lot of missing values in the current representation, so for now we'll use `na.rm` just so we can focus on the values that are present.
|
So we need to gather together all the columns from `new_sp_m3544` to `newrel_f65`. We don't know what those values represent yet, so we'll give them the generic name `"key"`. We know the cells repesent the count of cases, so we'll use the variable `cases`. There are a lot of missing values in the current representation, so for now we'll use `na.rm` just so we can focus on the values that are present.
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue