forcats now on CRAN (#415)
This commit is contained in:
parent
eab7d77e0f
commit
397b66b4d4
|
@ -14,9 +14,7 @@ For more historical context on factors, I recommend [_stringsAsFactors: An unaut
|
|||
To work with factors, we'll use the __forcats__ package, which provides tools for dealing with **cat**egorical variables (and it's an anagram of factors!). It provides a wide range of helpers for working with factors. We'll also need dplyr for some data manipulation, and ggplot2 for visualisation.
|
||||
|
||||
```{r setup, message = FALSE}
|
||||
# devtools::install_github("hadley/forcats")
|
||||
library(forcats)
|
||||
|
||||
library(ggplot2)
|
||||
library(dplyr)
|
||||
```
|
||||
|
|
Loading…
Reference in New Issue