| AbstractColumnStatistic | 
 Ancestor for column statistic generators. 
 | 
| AbstractDoubleArrayColumnStatistic | 
 Ancestor for statistics that just use all numeric values in the column. 
 | 
| ArrayStatistic | 
 Pushes the numeric column through the specified array statistic. 
 | 
| Distinct | 
 Counts the distinct numeric/string values. 
 | 
| IQR | 
 Calculates the IQR (interquartile range) for a numeric column. 
 | 
| LabelCounts | 
 Counts how often a label (ie string) occurs. 
 | 
| Max | 
 Calculates the max for a numeric column. 
 | 
| Mean | 
 Calculates the mean for a numeric column. 
 | 
| Median | 
 Calculates the median for a numeric column. 
 | 
| Min | 
 Calculates the min for a numeric column. 
 | 
| Missing | 
 Counts the missing cells. 
 | 
| MultiColumnStatistic | 
 Combines the statistics calculated from the specified statistic generators. 
 | 
| Percentile | 
 Calculates the specified percentile. 
 | 
| SignalToNoiseRatio | 
 Calculates the signal to noise ratio for a numeric column. 
 For more information, see: 
 WikiPedia. 
 | 
| StandardDeviation | 
 Calculates the standard deviation (population or sample). 
 | 
| Sum | 
 Calculates the sum for a numeric column. 
 | 
| Unique | 
 Counts the unique occurrences of numeric/string values. 
 |