forge-arena / ui /node_modules /d3-array /src /threshold /freedmanDiaconis.js
Amogh-kal1's picture
Upload folder using huggingface_hub
db75f77 verified
import count from "../count.js";
import quantile from "../quantile.js";
export default function thresholdFreedmanDiaconis(values, min, max) {
const c = count(values), d = quantile(values, 0.75) - quantile(values, 0.25);
return c && d ? Math.ceil((max - min) / (2 * d * Math.pow(c, -1 / 3))) : 1;
}