From a8099d06a61b42f33bb1755762d43d448f49ac2c Mon Sep 17 00:00:00 2001 From: Jeff Boichuk Date: Wed, 3 May 2017 08:43:27 -0400 Subject: [PATCH] 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" --- visualize.Rmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/visualize.Rmd b/visualize.Rmd index cc6e21f..30a680f 100644 --- a/visualize.Rmd +++ b/visualize.Rmd @@ -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