(cdi)
| 431 | // 3 IQR below (don't clip to max/min, |
| 432 | // this is only for discriminating suspected & far outliers) |
| 433 | function computeLowerOutlierBound(cdi) { |
| 434 | return 4 * cdi.q1 - 3 * cdi.q3; |
| 435 | } |
| 436 | |
| 437 | // 3 IQR above (don't clip to max/min, |
| 438 | // this is only for discriminating suspected & far outliers) |
no outgoing calls
no test coverage detected
searching dependent graphs…