(cdi)
| 437 | // 3 IQR above (don't clip to max/min, |
| 438 | // this is only for discriminating suspected & far outliers) |
| 439 | function computeUpperOutlierBound(cdi) { |
| 440 | return 4 * cdi.q3 - 3 * cdi.q1; |
| 441 | } |
| 442 | |
| 443 | // 95% confidence intervals for median |
| 444 | function computeNotchSpan(cdi, N) { |
no outgoing calls
no test coverage detected
searching dependent graphs…