Click or drag to resize

QuickStatistics Class

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

Namespace: Altaxo.Calc.Regression
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.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 Returns the maximum of the data values.
Public propertyMean Returns the mean (average) of the data values.
Public propertyMin Returns the minimum of the data values.
Public propertyN Returns the number of data values that were added.
Public propertySampleStandardDeviation Returns the sample standard deviation: square root of the error sum of squares divided by (N-1).
Public propertyStandardDeviation Returns the standard deviation: square root of the error sum of squares divided by N.
Public propertyVariance Returns the variance: error sum of squares divided by N.
Top
Methods
 NameDescription
Public methodAdd Adds a data point to the statistics.
Public methodAddRange(IEnumerableDouble) Adds data points to the statistics.
Public methodAddRange(ReadOnlySpanDouble) Adds data points to the statistics.
Public methodClear Initializes the statistics.
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 wikipedia article "Standard deviation".
See Also