Skip to content

Commit

Permalink
[#187887175] Bug fix: The informal confidence interval computation is…
Browse files Browse the repository at this point in the history
… off by a factor of 1.5

* The factor of 1.5 is now used in PlottedBoxPlotModel.recomputeValue for computing the ICI.
  • Loading branch information
bfinzer committed Jul 1, 2024
1 parent 0397666 commit 85a592c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -462,7 +462,7 @@ DG.PlottedBoxPlotModel = DG.PlottedIQRModel.extend(
iValue.lowerWhisker = iValue.vals[0];
iValue.upperWhisker = iValue.vals[iValue.vals.length - 1];
}
iValue.ICI = tShowICI ? iValue.IQR / Math.sqrt(iValue.vals.length) : undefined;
iValue.ICI = tShowICI ? 1.5 * iValue.IQR / Math.sqrt(iValue.vals.length) : undefined;
}
});
}
Expand Down

0 comments on commit 85a592c

Please sign in to comment.