Class DatasetStatistics<T>
Statistical summary of a dataset.
public class DatasetStatistics<T>
Type Parameters
TThe numeric data type used for calculations.
- Inheritance
-
DatasetStatistics<T>
- Inherited Members
Properties
CategoricalStats
Gets or sets the categorical column statistics.
public Dictionary<string, CategoricalColumnStats> CategoricalStats { get; set; }
Property Value
ColumnCount
Gets or sets the column count.
public int ColumnCount { get; set; }
Property Value
MissingValues
Gets or sets the missing values per column.
public Dictionary<string, long> MissingValues { get; set; }
Property Value
NumericStats
Gets or sets the numeric column statistics.
public Dictionary<string, NumericColumnStats<T>> NumericStats { get; set; }
Property Value
RecordCount
Gets or sets the record count.
public long RecordCount { get; set; }