mirror of
https://github.com/nosqlbench/nosqlbench.git
synced 2025-02-25 18:55:28 -06:00
Merge branch 'main' of github.com:nosqlbench/nosqlbench
This commit is contained in:
commit
46917d18bd
@ -63,7 +63,8 @@ public final class StatBucket {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public double variance() {
|
public double variance() {
|
||||||
return dSquared / ringbuf.count();
|
double variance = dSquared / ringbuf.count();
|
||||||
|
return (variance < 0) ? Math.abs(variance) : variance;
|
||||||
}
|
}
|
||||||
|
|
||||||
public double stddev() {
|
public double stddev() {
|
||||||
|
Loading…
Reference in New Issue
Block a user