Severian's picture
Upload 7464 files
c211499
raw
history blame
160 Bytes
import count from "../count.js";
export default function thresholdSturges(values) {
return Math.max(1, Math.ceil(Math.log(count(values)) / Math.LN2) + 1);
}