mode.js (578B)
1 "use strict"; 2 3 Object.defineProperty(exports, "__esModule", { 4 value: true 5 }); 6 exports.modeDocs = void 0; 7 var modeDocs = { 8 name: 'mode', 9 category: 'Statistics', 10 syntax: ['mode(a, b, c, ...)', 'mode(A)', 'mode(A, a, b, B, c, ...)'], 11 description: 'Computes the mode of all values as an array. In case mode being more than one, multiple values are returned in an array.', 12 examples: ['mode(2, 1, 4, 3, 1)', 'mode([1, 2.7, 3.2, 4, 2.7])', 'mode(1, 4, 6, 1, 6)'], 13 seealso: ['max', 'mean', 'min', 'median', 'prod', 'std', 'sum', 'variance'] 14 }; 15 exports.modeDocs = modeDocs;