From 759a767ab560eb95c80f197997fa7c51c2ee9e95 Mon Sep 17 00:00:00 2001 From: adi pradhan Date: Tue, 10 May 2016 16:19:49 -0400 Subject: [PATCH] 'plce' corrected to 'place' --- visualize.Rmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/visualize.Rmd b/visualize.Rmd index 484f604..43a403f 100644 --- a/visualize.Rmd +++ b/visualize.Rmd @@ -156,7 +156,7 @@ ggplot(data = mpg) + geom_point(mapping = aes(x = displ, y = hwy), color = "blue") ``` -Here, the color doesn't convey information about a variable. It only changes the appearance of the plot. To set an aesthetic manually, do not plce it in the `aes()` function. Call the aesthetic by name as an argument of your geom function. Then pass the aesthetic a value that R will recognize, such as +Here, the color doesn't convey information about a variable. It only changes the appearance of the plot. To set an aesthetic manually, do not place it in the `aes()` function. Call the aesthetic by name as an argument of your geom function. Then pass the aesthetic a value that R will recognize, such as * the name of a color as a character string * the size of a point as a cex expansion factor (see `?par`)