Doc fix: definition of varPop (#4403)

This commit is contained in:
Vivien Maisonneuve 2019-02-14 17:44:46 +01:00 committed by Ivan Blinkov
parent 6d865b538e
commit 6cf3d8c151

View File

@ -421,7 +421,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`.