Fix comment mismatch (#406)

This commit is contained in:
Justinas Petuchovas 2016-09-04 22:39:39 +03:00 committed by Hadley Wickham
parent 7785b01ca2
commit eab7d77e0f
1 changed files with 1 additions and 1 deletions

View File

@ -453,7 +453,7 @@ ggplot(data = diamonds) +
geom_point(mapping = aes(x = carat, y = price))
```
Scatterplots become less useful as the size of your dataset grows, because points begin to overplot, and pile up into areas of uniform black (as above). This problem is similar to showing the distribution of price by color using a scatterplot:
Scatterplots become less useful as the size of your dataset grows, because points begin to overplot, and pile up into areas of uniform black (as above). This problem is similar to showing the distribution of price by cut using a scatterplot:
```{r, dev = "png"}
ggplot(data = diamonds) +