Super minor typo fix (#893)

This commit is contained in:
Mine Cetinkaya-Rundel 2021-02-08 16:30:17 +00:00 committed by GitHub
parent 164172d32a
commit d1a3741fd5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -150,7 +150,7 @@ This is an important part of the "do not repeat yourself" (or DRY) principle. Th
sd(x, na.rm = TRUE) / mean(x, na.rm = TRUE)
```
1. write your own functions to compute the variance and skewness of a numeric vector.
1. Write your own functions to compute the variance and skewness of a numeric vector.
Variance is defined as
$$
\mathrm{Var}(x) = \frac{1}{n - 1} \sum_{i=1}^n (x_i - \bar{x}) ^2 \text{,}