StreamingStatisticsPopulationVariance(IEnumerableDouble) Method |
Evaluates the population variance from the full population provided as enumerable sequence, in a single pass without memoization.
On a dataset of size N will use an N normalizer and would thus be biased if applied to a subset.
Returns NaN if data is empty or if any entry is NaN.
Namespace: Altaxo.Calc.StatisticsAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax public static double PopulationVariance(
IEnumerable<double> population
)
Parameters
- population IEnumerableDouble
- Sample stream, no sorting is assumed.
Return Value
Double[Missing <returns> documentation for "M:Altaxo.Calc.Statistics.StreamingStatistics.PopulationVariance(System.Collections.Generic.IEnumerable{System.Double})"]
See Also