Typo (#1581)
Change: "Note that we’re mapping the density the y,..." to: "Note that we’re mapping the density to y,..."
This commit is contained in:
parent
afa7c5f53b
commit
8c596307f3
2
EDA.qmd
2
EDA.qmd
|
@ -372,7 +372,7 @@ ggplot(diamonds, aes(x = price, y = after_stat(density))) +
|
|||
geom_freqpoly(aes(color = cut), binwidth = 500, linewidth = 0.75)
|
||||
```
|
||||
|
||||
Note that we're mapping the density the `y`, but since `density` is not a variable in the `diamonds` dataset, we need to first calculate it.
|
||||
Note that we're mapping the density to `y`, but since `density` is not a variable in the `diamonds` dataset, we need to first calculate it.
|
||||
We use the `after_stat()` function to do so.
|
||||
|
||||
There's something rather surprising about this plot - it appears that fair diamonds (the lowest quality) have the highest average price!
|
||||
|
|
Loading…
Reference in New Issue