/
ai_sampletext
/
DiplomWork
Обзор
Документация
Войти
/
ai_sampletext
/
DiplomWork
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
node_modules/d3-array/src/threshold/freedmanDiaconis.js
7 строк
303 B
boolyshareyo
Initial commit
08 июн 2026, 16:00
08 июн 2026, 16:00
6216a29
Код
Авторство
О чём код?
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; }