Click or drag to resize

Aggregate Enumeration

Specifies a grouping aggregate.

Namespace: Altaxo.DataConnection
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public enum Aggregate
Members
Member nameValueDescription
GroupBy0 Groups by the field value.
Sum1 Calculates the sum.
Avg2 Calculates the average.
Min3 Gets the minimum value.
Max4 Gets the maximum value.
Count5 Counts the values.
SumDistinct6 Calculates the sum of distinct values.
AvgDistinct7 Calculates the average of distinct values.
MinDistinct8 Gets the minimum of distinct values.
MaxDistinct9 Gets the maximum of distinct values.
CountDistinct10 Counts distinct values.
StDev11 Calculates the sample standard deviation.
StDevP12 Calculates the population standard deviation.
Var13 Calculates the sample variance.
VarP14 Calculates the population variance.

The Aggregate type exposes the following members.

Extension Methods
 NameDescription
Public Extension MethodIsT Determines whether the enumeration value is equal to the specified value.
(Defined by EnumerationExtensions)
Public Extension MethodWithClearedFlagT Returns the enum value with the specified flag cleared.
(Defined by EnumerationExtensions)
Public Extension MethodWithFlagT Returns the enum value with the specified flag set or cleared, depending on the value argument.
(Defined by EnumerationExtensions)
Public Extension MethodWithSetFlagT Returns the enum value with the specified flag set.
(Defined by EnumerationExtensions)
Top
See Also