makearmy-app/node_modules/d3-array/src/threshold/sturges.js

6 lines
160 B
JavaScript
Raw Normal View History

2025-09-22 10:37:53 -04:00
import count from "../count.js";
export default function thresholdSturges(values) {
return Math.max(1, Math.ceil(Math.log(count(values)) / Math.LN2) + 1);
}