DK11 for ActiveX | TatukGIS_XDK11.TGIS_StatisticalFunction | Enums
Available statistical functions
// C# public enum TGIS_StatisticalFunction { Average = 0, Count = 1, CountMissings = 2, Max = 3, Majority = 4, Median = 5, Min = 6, Minority = 7, Percentile = 8, Range = 9, StandardDeviation = 10, Sum = 11, Variance = 12, Variety = 13, Unique = 14, Sample = 15 }
' VisualBasic Public Enum TGIS_StatisticalFunction Average = 0 Count = 1 CountMissings = 2 Max = 3 Majority = 4 Median = 5 Min = 6 Minority = 7 Percentile = 8 Range = 9 StandardDeviation = 10 Sum = 11 Variance = 12 Variety = 13 Unique = 14 Sample = 15 End Enum
// Oxygene type TGIS_StatisticalFunction = public ( Average = 0, Count = 1, CountMissings = 2, Max = 3, Majority = 4, Median = 5, Min = 6, Minority = 7, Percentile = 8, Range = 9, StandardDeviation = 10, Sum = 11, Variance = 12, Variety = 13, Unique = 14, Sample = 15 );
Name | Value | Description | |
---|---|---|---|
Average | 0 | The average value (arithmetic mean) of dataset. | |
Count | 1 | Number of valid elements in dataset (not empty, not null). | |
CountMissings | 2 | Number of empty or null elements in dataset. | |
Max | 3 | The maximum value in dataset. | |
Majority | 4 | The value that occurs most often in dataset. | |
Median | 5 | The median (middle value) of dataset. | |
Min | 6 | The minimum value in dataset. | |
Minority | 7 | The value that occurs least often in dataset. | |
Percentile | 8 | The value below which a percentage of data falls. Not available for strings. | |
Range | 9 | The difference between maximum and minimum values in dataset. | |
StandardDeviation | 10 | The standard deviation of dataset. | |
Sum | 11 | The sum of values in dataset. | |
Variance | 12 | The variance of dataset. | |
Variety | 13 | The number of unique values in dataset. | |
Unique | 14 | Extracting unique values from dataset. | |
Sample | 15 | Extracting sample values from dataset. | |