Label x and y arguments in aes(), closes #1159

This commit is contained in:
mine-cetinkaya-rundel
2022-12-12 13:35:15 -05:00
parent 73d779d8e0
commit ff893361e8
11 changed files with 31 additions and 30 deletions

View File

@@ -23,6 +23,6 @@ The distribution of the remainder is shown below:
#| echo: false
smaller |>
ggplot(aes(carat)) +
ggplot(aes(x = carat)) +
geom_freqpoly(binwidth = 0.01)
```