site/node_modules/d3-array/src/threshold/freedmanDiaconis.js
2024-10-14 08:09:33 +02:00

7 lines
303 B
JavaScript

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;
}