Returns the population standard deviation of the values. The count must be non-zero. This is guaranteed to return zero if the the dataset contains only exactly one finite value. It is not guaranteed to
()
| 260 | |
| 261 | |
| 262 | public double populationStandardDeviation() { |
| 263 | return Math.sqrt(populationVariance()); |
| 264 | } |
| 265 | |
| 266 | /** |
| 267 | * Returns the <a href="http://en.wikipedia.org/wiki/Variance#Sample_variance">unbaised sample |
no test coverage detected