Sha256: 12cd765887dd356f6f61669f64deefc353b465770add03226c29afcc3780c634

Contents?: true

Size: 879 Bytes

Versions: 265

Compression:

Stored size: 879 Bytes

Contents

var baseIteratee = require('./_baseIteratee'),
    baseMean = require('./_baseMean');

/**
 * This method is like `_.mean` except that it accepts `iteratee` which is
 * invoked for each element in `array` to generate the value to be averaged.
 * The iteratee is invoked with one argument: (value).
 *
 * @static
 * @memberOf _
 * @since 4.7.0
 * @category Math
 * @param {Array} array The array to iterate over.
 * @param {Function} [iteratee=_.identity] The iteratee invoked per element.
 * @returns {number} Returns the mean.
 * @example
 *
 * var objects = [{ 'n': 4 }, { 'n': 2 }, { 'n': 8 }, { 'n': 6 }];
 *
 * _.meanBy(objects, function(o) { return o.n; });
 * // => 5
 *
 * // The `_.property` iteratee shorthand.
 * _.meanBy(objects, 'n');
 * // => 5
 */
function meanBy(array, iteratee) {
  return baseMean(array, baseIteratee(iteratee, 2));
}

module.exports = meanBy;

Version data entries

265 entries across 263 versions & 30 rubygems

Version Path
appmap-0.71.0 ./node_modules/lodash/meanBy.js
disco_app-0.16.1 test/dummy/node_modules/lodash/meanBy.js
appmap-0.70.2 ./node_modules/lodash/meanBy.js
sumomo-0.8.14 data/sumomo/api_modules/node_modules/lodash/meanBy.js
appmap-0.70.1 ./node_modules/lodash/meanBy.js
appmap-0.70.0 ./node_modules/lodash/meanBy.js
appmap-0.69.0 ./node_modules/lodash/meanBy.js
sumomo-0.8.13 data/sumomo/api_modules/node_modules/lodash/meanBy.js
appmap-0.68.2 ./node_modules/lodash/meanBy.js
appmap-0.68.1 ./node_modules/lodash/meanBy.js
disco_app-0.15.2 test/dummy/node_modules/lodash/meanBy.js
appmap-0.68.0 ./node_modules/lodash/meanBy.js
appmap-0.67.1 ./node_modules/lodash/meanBy.js
trusty-cms-5.0.3 node_modules/lodash/meanBy.js
trusty-cms-5.0.2 node_modules/lodash/meanBy.js
appmap-0.67.0 ./node_modules/lodash/meanBy.js
disco_app-0.18.4 test/dummy/node_modules/lodash/meanBy.js
disco_app-0.18.1 test/dummy/node_modules/lodash/meanBy.js
disco_app-0.12.7.pre.puma.pre.3 test/dummy/node_modules/lodash/meanBy.js
disco_app-0.14.0 test/dummy/node_modules/lodash/meanBy.js