forcats now on CRAN (#415)

This commit is contained in:
Colin Gillespie 2016-09-08 14:10:45 +01:00 committed by Hadley Wickham
parent eab7d77e0f
commit 397b66b4d4
1 changed files with 0 additions and 2 deletions

View File

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