Computes the mean of the provided properties of the objects in the array
array
Optional
The iteratee invoked per element.
Returns the mean.
_.mean([{ 'n': 4 }, { 'n': 2 }, { 'n': 8 }, { 'n': 6 }], 'n');// => 5 Copy
_.mean([{ 'n': 4 }, { 'n': 2 }, { 'n': 8 }, { 'n': 6 }], 'n');// => 5
Computes the mean of the provided properties of the objects in the
array