DIR : /home/kozerus/public_html/cropex/node/node_modules/d3-array/src/threshold/freedmanDiaconis.js

/home/kozerus/public_html/cropex/node/node_modules/d3-array/src/threshold

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


koh5_pano



Your browser does not support the HTML5 canvas element.


Drag mouse to navigate.

Navigation





17.Aug.2010, Martin Wengenmayer