We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c11b35c commit 9146805Copy full SHA for 9146805
2 files changed
tools/awk/stdev.awk
@@ -41,7 +41,7 @@ BEGIN {
41
N += 1
42
delta = $1 - mean
43
mean += delta / N
44
- M2 += delta * ($1 - mu)
+ M2 += delta * ($1 - mean)
45
}
46
END {
47
if (N < 2) {
tools/awk/variance.awk
0 commit comments