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