StdDevSamp constructor

StdDevSamp(
  1. dynamic expr
)

Creates $stdDevSamp operator expression

Calculates the sample standard deviation of the input values. Use if the values encompass a sample of a population of data from which to generalize about the population. $stdDevSamp ignores non-numeric values.

Implementation

StdDevSamp(expr) : super('stdDevSamp', expr is List ? AEList(expr) : expr);