Leon4gr45's picture
Upload folder using huggingface_hub (part 8)
fcf3b03 verified
Raw
History Blame Contribute Delete
379 Bytes
import "../math/number";
d3.mean = function(array, f) {
var s = 0,
n = array.length,
a,
i = -1,
j = n;
if (arguments.length === 1) {
while (++i < n) if (d3_numeric(a = d3_number(array[i]))) s += a; else --j;
} else {
while (++i < n) if (d3_numeric(a = d3_number(f.call(array, array[i], i)))) s += a; else --j;
}
if (j) return s / j;
};