added root to msd (#650)

This commit is contained in:
Edwin Thoen 2018-06-20 11:07:52 +02:00 committed by Hadley Wickham
parent f8a9d17d6f
commit 37c9d02b29
1 changed files with 1 additions and 1 deletions

View File

@ -676,7 +676,7 @@ 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 mean squared deviation, * 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. or standard deviation or sd for short, is the standard measure of spread.
The interquartile range `IQR()` and median absolute deviation `mad(x)` The interquartile range `IQR()` and median absolute deviation `mad(x)`
are robust equivalents that may be more useful if you have outliers. are robust equivalents that may be more useful if you have outliers.