@jonahsnider/util

    Function stddev

    • Calculate the standard deviation of a sequence of numbers.

      Time complexity: O(n)

      Space complexity: O(1)

      Parameters

      • values: readonly number[]

        Values to use in the calculation

      • meanValue: number = ...

        The mean of values, will be calculated if not provided

      Returns number

      The standard deviation of values

      Math

      stddev([1, 2, 3]); // 1
      
    MMNEPVFCICPMFPCPTTAAATR