Fixing typos in factors.Rmd (#306)

* Fixing typos in factors.Rmd

* Update factors.Rmd

If 'Those' is more appropriate.
This commit is contained in:
Brett Klamer 2016-08-30 08:55:16 -04:00 committed by Hadley Wickham
parent 5ecefc3f2f
commit e08db5b3fb
1 changed files with 1 additions and 1 deletions

View File

@ -92,7 +92,7 @@ ggplot(gss_cat, aes(race)) +
These levels represent valid values that simply did not occur in this dataset. Unfortunately, dplyr doesn't yet have a `drop` option, but it will in the future.
When working with factors, the two most common operations are changing the order of the levels, and changing the values of the levels. Those operation are described in the sections below.
When working with factors, the two most common operations are changing the order of the levels, and changing the values of the levels. Those operations are described in the sections below.
### Exercise