public class SampleVarianceCalculator extends Object implements Function<double[],Double>
The unbiased sample variance $\mathrm{var}$ of a series $x_1, x_2, \dots, x_n$ is given by:
$$
\begin{align*}
\text{var} = \frac{1}{n-1}\sum_{i=1}^{n}(x_i - \overline{x})^2
\end{align*}
$$
where $\overline{x}$ is the sample mean. For the population variance, see PopulationVarianceCalculator.
| Constructor and Description |
|---|
SampleVarianceCalculator() |
Copyright 2009-Present by OpenGamma Inc. and individual contributors
Apache v2 licensed
Additional documentation can be found at strata.opengamma.io.