(cdi, N)
| 442 | |
| 443 | // 95% confidence intervals for median |
| 444 | function computeNotchSpan(cdi, N) { |
| 445 | if(N === 0) return 0; |
| 446 | return 1.57 * (cdi.q3 - cdi.q1) / Math.sqrt(N); |
| 447 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…