Adds a missing "the" (#545)

The following sentence is missing the bracketed word (i.e., "the"): "ggplot2 provides over 20 stats for you to use. Each stat is a function, so you can get help in [the] usual way"
This commit is contained in:
Jeff Boichuk 2017-05-03 08:43:27 -04:00 committed by Hadley Wickham
parent 9836d5c86a
commit a8099d06a6
1 changed files with 1 additions and 1 deletions

View File

@ -541,7 +541,7 @@ This works because every geom has a default stat; and every stat has a default g
)
```
ggplot2 provides over 20 stats for you to use. Each stat is a function, so you can get help in usual way, e.g. `?stat_bin`. To see a complete list of stats, try the ggplot2 cheatsheet.
ggplot2 provides over 20 stats for you to use. Each stat is a function, so you can get help in the usual way, e.g. `?stat_bin`. To see a complete list of stats, try the ggplot2 cheatsheet.
### Exercises