123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- "use strict";
- Object.defineProperty(exports, "__esModule", {
- value: true
- });
- exports.createMode = void 0;
- var _array = require("../../utils/array.js");
- var _factory = require("../../utils/factory.js");
- var name = 'mode';
- var dependencies = ['typed', 'isNaN', 'isNumeric'];
- var createMode = /* #__PURE__ */(0, _factory.factory)(name, dependencies, function (_ref) {
- var typed = _ref.typed,
- isNaN = _ref.isNaN,
- isNumeric = _ref.isNumeric;
- /**
- * Computes the mode of a set of numbers or a list with values(numbers or characters).
- * If there are multiple modes, it returns a list of those values.
- *
- * Syntax:
- *
- * math.mode(a, b, c, ...)
- * math.mode(A)
- *
- * Examples:
- *
- * math.mode(2, 1, 4, 3, 1) // returns [1]
- * math.mode([1, 2.7, 3.2, 4, 2.7]) // returns [2.7]
- * math.mode(1, 4, 6, 1, 6) // returns [1, 6]
- * math.mode('a','a','b','c') // returns ["a"]
- * math.mode(1, 1.5, 'abc') // returns [1, 1.5, "abc"]
- *
- * See also:
- *
- * median,
- * mean
- *
- * @param {... *} args A single matrix
- * @return {*} The mode of all values
- */
- return typed(name, {
- 'Array | Matrix': _mode,
- '...': function _(args) {
- return _mode(args);
- }
- });
- /**
- * Calculates the mode in an 1-dimensional array
- * @param {Array} values
- * @return {Array} mode
- * @private
- */
- function _mode(values) {
- values = (0, _array.flatten)(values.valueOf());
- var num = values.length;
- if (num === 0) {
- throw new Error('Cannot calculate mode of an empty array');
- }
- var count = {};
- var mode = [];
- var max = 0;
- for (var i = 0; i < values.length; i++) {
- var value = values[i];
- if (isNumeric(value) && isNaN(value)) {
- throw new Error('Cannot calculate mode of an array containing NaN values');
- }
- if (!(value in count)) {
- count[value] = 0;
- }
- count[value]++;
- if (count[value] === max) {
- mode.push(value);
- } else if (count[value] > max) {
- max = count[value];
- mode = [value];
- }
- }
- return mode;
- }
- });
- exports.createMode = createMode;
|