Sha256: 8c4ae1d00c519a1971a4935d1807dc9fa5edae592578eae16653c90f23a377dc
Contents?: true
Size: 238 Bytes
Versions: 31
Compression:
Stored size: 238 Bytes
Contents
// R-7 per <http://en.wikipedia.org/wiki/Quantile> d3.quantile = function(values, p) { var H = (values.length - 1) * p + 1, h = Math.floor(H), v = values[h - 1], e = H - h; return e ? v + e * (values[h] - v) : v; };
Version data entries
31 entries across 31 versions & 2 rubygems