From 99c71c342c22e337e4539b72234e4921d2bc353a Mon Sep 17 00:00:00 2001 From: QuantScripter <95710662+devpowerplatform@users.noreply.github.com> Date: Tue, 9 Jul 2024 12:06:45 -0500 Subject: [PATCH] Update ggplot-appendix.Rmd typo --- ggplot-appendix.Rmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ggplot-appendix.Rmd b/ggplot-appendix.Rmd index e0d3250..191c5d0 100644 --- a/ggplot-appendix.Rmd +++ b/ggplot-appendix.Rmd @@ -187,7 +187,7 @@ ggplot(dat, aes(x = xval, y = yval)) + geom_point() ``` -If you're going to reuse some of these components, you canstore them in variables. We can save the ggplot object in p, and then add `geom_point()` to it. This has the same effect as the preceding code: +If you're going to reuse some of these components, you can store them in variables. We can save the ggplot object in p, and then add `geom_point()` to it. This has the same effect as the preceding code: ```{r FIG-GGPLOT-SCATTER, fig.cap="A basic scatter plot"} p <- ggplot(dat, aes(x = xval, y = yval))