Find the sample standard deviation of an array.
An array.
Optional
The iteratee invoked on each element.
Returns the standard deviation.
0.1.0
stdev([1, 2, 3])// => 1const objects = [{ 'n': 4 }, { 'n': 2 }, { 'n': 8 }, { 'n': 6 }]stdev(objects, ({ n }) => n)// => 2.5819889 Copy
stdev([1, 2, 3])// => 1const objects = [{ 'n': 4 }, { 'n': 2 }, { 'n': 8 }, { 'n': 6 }]stdev(objects, ({ n }) => n)// => 2.5819889
Find the sample standard deviation of an array.