From e1286ca08949524e2e09173e4ead514d1c29fffe Mon Sep 17 00:00:00 2001 From: Devarshi Thakkar <112989502+dthakkar09@users.noreply.github.com> Date: Mon, 27 Mar 2023 23:04:29 -0400 Subject: [PATCH] Update data-visualize.qmd (#1394) In Section 2.2.4, 5th paragraph, 2nd line has typo. There are two 'to's. --- data-visualize.qmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data-visualize.qmd b/data-visualize.qmd index f1f2a2f..c787169 100644 --- a/data-visualize.qmd +++ b/data-visualize.qmd @@ -262,7 +262,7 @@ Now let's add one more layer: a smooth curve displaying the relationship between Before you proceed, refer back to the code above, and think about how we can add this to our existing plot. Since this is a new geometric object representing our data, we will add a new geom as a layer on top of our point geom: `geom_smooth()`. -And we will specify that we want to to draw the line of best fit based on a `l`inear `m`odel with `method = "lm"`. +And we will specify that we want to draw the line of best fit based on a `l`inear `m`odel with `method = "lm"`. ```{r} #| warning: false