Fix en doc: varPop(x)

This commit is contained in:
sundy-li 2018-02-06 18:42:41 +08:00
parent 468a280a94
commit c87629197b

View File

@ -273,7 +273,7 @@ Returns `Float64`. When `n <= 1`, returns `+∞`.
## varPop(x)
Calculates the amount `Σ((x - x̅)^2) / (n - 1)`, where `n` is the sample size and `x̅`is the average value of `x`.
Calculates the amount `Σ((x - x̅)^2) / n`, where `n` is the sample size and `x̅`is the average value of `x`.
In other words, dispersion for a set of values. Returns `Float64`.