Click or drag to resize

PFQueryAggregationType Enumeration

Specifies how a value is obtained from an aggregation of multiple values.

Namespace:  Packflow.Core
Assembly:  MicaSystems.Packflow.Core (in MicaSystems.Packflow.Core.dll) Version: 1.0.0.0 (3.2.0.306)
Syntax
C#
public enum PFQueryAggregationType
Members
  Member nameValueDescription
Sum0 Sums all values and return the total.

This function can be used with numeric data only.

Maximum1 Returns the highest of all values.
Minimum2 Returns the smallest of all values.
Average3 Computes the average of all values.

This function can be used with numeric data only.

Count4 Counts the number of values.
Variance5 Computes the square of the standard deviation.

This function can be used with numeric data only.

StandardDeviation6 Computes the standard deviation, a numerical value used to indicate how widely individuals in a group vary.

If individual observations vary greatly from the group mean, the standard deviation is big; and vice versa.

This function can be used with numeric data only.

Note: Sample Standard deviation and not Standard deviation of sample.

See Also