mirror of
https://github.com/Tria-plc/emaui.git
synced 2026-08-27 16:40:57 +00:00
8 lines
260 B
JavaScript
8 lines
260 B
JavaScript
import count from "../count.js";
|
|
import deviation from "../deviation.js";
|
|
|
|
export default function thresholdScott(values, min, max) {
|
|
const c = count(values), d = deviation(values);
|
|
return c && d ? Math.ceil((max - min) * Math.cbrt(c) / (3.49 * d)) : 1;
|
|
}
|