consistency in referring to spread functions (#688)

This commit is contained in:
Edwin Thoen 2018-10-24 19:25:30 +02:00 committed by Hadley Wickham
parent d1a63fe379
commit 5d1a4b57ba
1 changed files with 2 additions and 2 deletions

View File

@ -677,8 +677,8 @@ Just using means, counts, and sum can get you a long way, but R provides many ot
```
* Measures of spread: `sd(x)`, `IQR(x)`, `mad(x)`. The root mean squared deviation,
or standard deviation or sd for short, is the standard measure of spread.
The interquartile range `IQR()` and median absolute deviation `mad(x)`
or standard deviation `sd(x)`, is the standard measure of spread.
The interquartile range `IQR(x)` and median absolute deviation `mad(x)`
are robust equivalents that may be more useful if you have outliers.
```{r}