mirror of
https://github.com/nosqlbench/nosqlbench.git
synced 2024-12-23 07:34:31 -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() {
|
||||
return dSquared / ringbuf.count();
|
||||
double variance = dSquared / ringbuf.count();
|
||||
return (variance < 0) ? Math.abs(variance) : variance;
|
||||
}
|
||||
|
||||
public double stddev() {
|
||||
|
Loading…
Reference in New Issue
Block a user