Class NumericColumnStats<T>
Statistics for a numeric column.
public class NumericColumnStats<T>
Type Parameters
TThe numeric data type.
- Inheritance
-
NumericColumnStats<T>
- Inherited Members
Properties
Max
Gets or sets the maximum value.
public T? Max { get; set; }
Property Value
- T
Mean
Gets or sets the mean value.
public T? Mean { get; set; }
Property Value
- T
Median
Gets or sets the median value.
public T? Median { get; set; }
Property Value
- T
Min
Gets or sets the minimum value.
public T? Min { get; set; }
Property Value
- T
StdDev
Gets or sets the standard deviation.
public T? StdDev { get; set; }
Property Value
- T