Skip to content

Commit 260a87c

Browse files
fix: standardize normalize calculation of stddev (#924)
Co-authored-by: Carlos Fuentes <[email protected]>
1 parent 79fd209 commit 260a87c

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)