Skip to content

Commit f4c9ee2

Browse files
authored
fix: standardize normalize calculation of stddev (#923)
1 parent 216a7a1 commit f4c9ee2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/histogram.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ export class PiscinaHistogramHandler {
7777
return {
7878
average: mean / 1000,
7979
mean: mean / 1000,
80-
stddev,
80+
stddev: stddev / 1000,
8181
min: min / 1000,
8282
max: max / 1000,
8383
p0_001: histogram.percentile(0.001) / 1000,

0 commit comments

Comments
 (0)