Click or drag to resize

Statistics Class

Provides statistical helper methods (mostly as extension methods) for sequences of Double
Inheritance Hierarchy
SystemObject
  Altaxo.Calc.ProbabilityStatistics

Namespace: Altaxo.Calc.Probability
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntax
C#
public static class Statistics

The Statistics type exposes the following members.

Methods
 NameDescription
Public Extension MethodInterQuartileRange Calculates the interquartile range (IQR) of the sequence.
Public Extension MethodMassDistribution Computes a mass distribution (binned weighted counts) for use in kernel density estimation.
Public Extension MethodMean(IReadOnlyListDouble) Calculates the arithmetic mean of the sequence.
Public Extension MethodMean(IReadOnlyListDouble, Boolean) Calculates the arithmetic mean of the sequence, optionally ignoring NaN values.
Public Extension MethodProbabilityDensity Estimates a probability density function using kernel density estimation.
Public Extension MethodQuantile(IReadOnlyListDouble, Double) Calculates the quantile value of x.
Public Extension MethodQuantile(IReadOnlyListDouble, Double, Int32, Int32, Boolean) Calculates the quantile value of x.
Public Extension MethodStandardDeviation Calculates the (sample) standard deviation of the sequence.
Top
See Also