-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathdescriptive.js
58 lines (53 loc) · 1.46 KB
/
descriptive.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
import { kahanSum } from './utils';
/**
* Return the minimum of a numeric data array.
* @param {Number[]} arr the data array
* @returns {Number} the minimum of the data array
*/
export function min(arr) {
if (!Array.isArray(arr) || arr.length === 0) return undefined;
let result = arr[0];
for (let i = 0; i < arr.length; i += 1) {
if (!Number.isFinite(arr[i])) return undefined;
result = arr[i] > result ? result : arr[i];
}
return result;
}
/**
* Return the maximum of a numeric data array.
* @param {Number[]} arr the data array
* @returns {Number} the maximum of the data array
*/
export function max(arr) {
if (!Array.isArray(arr) || arr.length === 0) return undefined;
let result = arr[0];
for (let i = 0; i < arr.length; i += 1) {
if (!Number.isFinite(arr[i])) return undefined;
result = arr[i] < result ? result : arr[i];
}
return result;
}
/**
* Returns the product of all entries in a numeric data array.
* @param {Array} arr the data array
* @returns {Number} the product of all the data in the array
*/
export function product(arr) {
if (!Array.isArray(arr) || arr.length === 0) return undefined;
let result = 1;
for (let i = 0; i < arr.length; i += 1) {
if (!Number.isFinite(arr[i])) return undefined;
result *= arr[i];
}
return result;
}
export function sum(arr) {
if (!Array.isArray(arr) || arr.length === 0) return undefined;
return kahanSum(arr);
}
export default {
min,
max,
product,
sum,
};