Click or drag to resize

KindOfAggregation Enumeration

Specifies the available kinds of aggregation for aggregated columns.

Namespace: Altaxo.Data
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntax
C#
public enum KindOfAggregation
Members
Member nameValueDescription
Mean1 Arithmetic mean of the values.
StdDev2 Standard deviation of the values, the divisor is N-1 (sample size minus 1, Bessel’s correction).
PopulationStdDev3 Standard deviation estimated from a sample, the divisor is N (population size).
Median4 Median of the values.
Minimum5 Minimum of the values.
Maximum6 Maximum of the values.
Count7 Number of values.
Sum8 Sum of the values.
Variance9 Sample variance of the values, the divisor is N-1 (sample size minus 1, Bessel’s correction).
PopulationVariance10 Population variance estimated from a sample, the divisor is N (population size).
MinimumAbsolute11 Minimum of the absolute values.
MaximumAbsolute12 Maximum of the absolute values.
GeometricMean13 Geometric mean of the values.
HarmonicMean14 Harmonic mean of the values.
Skewness15 Sample skewness of the values; the divisor is N-1 (sample size minus 1).
PopulationSkewness16 Population skewness estimated from a sample; the divisor is N (population size).
Kurtosis17 Sample kurtosis of the values; the divisor is N-1 (sample size minus 1).
PopulationKurtosis18 Population kurtosis estimated from a sample; the divisor is N (population size).
RootMeanSquare19 Root mean square of the values.
LowerQuartile20 Lower quartile (25th percentile) of the values.
UpperQuartile21 Upper quartile (75th percentile) of the values.
See Also