standardDeviation function Null safety
- List values
Computes the standard deviation of the values in array.
Implementation
num standardDeviation(List<dynamic> values) {
return math.sqrt(variance(values));
}
Computes the standard deviation of the values in array.
num standardDeviation(List<dynamic> values) {
return math.sqrt(variance(values));
}