Fix capitalization, closes #1286

This commit is contained in:
mine-cetinkaya-rundel 2023-02-23 23:53:52 -05:00
parent b222b5c467
commit 9ee09e9441
1 changed files with 1 additions and 1 deletions

View File

@ -138,7 +138,7 @@ ggplot(penguins, aes(x = flipper_length_mm, y = body_mass_g)) +
Let's recreate this plot layer-by-layer.
With ggplot2, you begin a plot with the function `ggplot()`, defining a plot object that you then add layers to.
The first argument of `ggplot()` is the dataset to use in the graph and So `ggplot(data = penguins)` creates an empty graph.
The first argument of `ggplot()` is the dataset to use in the graph and so `ggplot(data = penguins)` creates an empty graph.
This is not a very exciting plot, but you can think of it like an empty canvas you'll paint the remaining layers of your plot onto.
```{r}