Class CategoricalColumnStats
Statistics for a categorical column.
public class CategoricalColumnStats
- Inheritance
-
CategoricalColumnStats
- Inherited Members
Properties
MostFrequent
Gets or sets the most frequent value.
public string? MostFrequent { get; set; }
Property Value
MostFrequentCount
Gets or sets the frequency of the most frequent value.
public long MostFrequentCount { get; set; }
Property Value
UniqueCount
Gets or sets the number of unique values.
public int UniqueCount { get; set; }
Property Value
ValueCounts
Gets or sets the value distribution.
public Dictionary<string, long> ValueCounts { get; set; }