fixed a typo (#336)

fixed a typo
This commit is contained in:
seamus-mckinsey 2016-08-29 18:34:25 -04:00 committed by Hadley Wickham
parent 5f16562857
commit e8b4980a58
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,7 @@ ggplot(diamonds, aes(carat, price)) +
We can make it easier to see how the other attributes of a diamond affect its relative `price` by fitting a model to separate out the effect of `carat`. But first, lets make a couple of tweaks to the diamonds dataset to make it easier to work with:
1. Focus on diamonds bigger smaller than 2.5 carats (99.7% of the data)
1. Focus on diamonds smaller than 2.5 carats (99.7% of the data)
1. Log-transform the carat and price variables.
```{r}