Click or drag to resize

QuickStatistics Class

Uses the method of running sums to calculate mean, sample standard deviation, and population standard deviation of a data set.
Inheritance Hierarchy
SystemObject
  Altaxo.Calc.RegressionQuickStatistics

Namespace: Altaxo.Calc.Regression
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntax
C#
public class QuickStatistics

The QuickStatistics type exposes the following members.

Constructors
 NameDescription
Public methodQuickStatisticsInitializes a new instance of the QuickStatistics class
Top
Properties
 NameDescription
Public propertyMax Gets the maximum of the data values.
Public propertyMean Gets the arithmetic mean (average) of the data values.
Public propertyMin Gets the minimum of the data values.
Public propertyN Gets the number of data values that were added.
Public propertyPopulationStandardDeviation Gets the population standard deviation: square root of the error sum of squares divided by N.
Public propertyPopulationVariance Gets the population variance: error sum of squares divided by N.
Public propertySampleStandardDeviation Gets the sample standard deviation: square root of the error sum of squares divided by (N-1).
Public propertySampleVariance Gets the sample variance: error sum of squares divided by N-1.
Public propertyStandardDeviation Gets the sample standard deviation: square root of the error sum of squares divided by (N-1).
Public propertyVariance Gets the sample variance: error sum of squares divided by N-1.
Top
Methods
 NameDescription
Public methodAdd Adds a data point to the statistics.
Public methodAddRange(IEnumerableDouble) Adds a sequence of data points to the statistics.
Public methodAddRange(ReadOnlySpanDouble) Adds a span of data points to the statistics.
Public methodClear Resets the statistics to their initial state.
Public methodEqualsDetermines whether the specified object is equal to the current object.
(Inherited from Object)
Protected methodFinalizeAllows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object)
Public methodGetHashCodeServes as the default hash function.
(Inherited from Object)
Public methodGetTypeGets the Type of the current instance.
(Inherited from Object)
Protected methodMemberwiseCloneCreates a shallow copy of the current Object.
(Inherited from Object)
Public methodToStringReturns a string that represents the current object.
(Inherited from Object)
Top
Remarks
See the Wikipedia article "Standard deviation".
See Also