Category
Calculate the standard deviation of a sequence of numbers.
Time complexity: O(n)
Space complexity: O(1)
Values to use in the calculation
The mean of values, will be calculated if not provided
values
The standard deviation of values
Math
stddev([1, 2, 3]); // 1 Copy
stddev([1, 2, 3]); // 1
Calculate the standard deviation of a sequence of numbers.
Time complexity: O(n)
Space complexity: O(1)