MCPcopy Index your code
hub / github.com/plotly/plotly.js / computeNotchSpan

Function computeNotchSpan

src/traces/box/calc.js:444–447  ·  view source on GitHub ↗
(cdi, N)

Source from the content-addressed store, hash-verified

442
443// 95% confidence intervals for median
444function computeNotchSpan(cdi, N) {
445 if(N === 0) return 0;
446 return 1.57 * (cdi.q3 - cdi.q1) / Math.sqrt(N);
447}

Callers 1

calc.jsFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…