Returns the corrected sample standard deviation of the values. If this dataset is a sample drawn from a population, this is an estimator of the population standard deviation of the population which is
()
| 310 | |
| 311 | |
| 312 | public double sampleStandardDeviation() { |
| 313 | return Math.sqrt(sampleVariance()); |
| 314 | } |
| 315 | |
| 316 | /** |
| 317 | * Returns the lowest value in the dataset. The count must be non-zero. |
nothing calls this directly
no test coverage detected