StdDevPop constructor
StdDevPop(
- dynamic expr
Creates $stdDevPop operator expression
Calculates the population standard deviation of the input values. Use if
the values encompass the entire population of data you want to represent
and do not wish to generalize about a larger population. $stdDevPop ignores
non-numeric values.
Implementation
StdDevPop(expr) : super('stdDevPop', expr is List ? AEList(expr) : expr);