Table of Contents

Class CategoricalColumnStats

Namespace
AiDotNet.Models
Assembly
AiDotNet.dll

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

string

MostFrequentCount

Gets or sets the frequency of the most frequent value.

public long MostFrequentCount { get; set; }

Property Value

long

UniqueCount

Gets or sets the number of unique values.

public int UniqueCount { get; set; }

Property Value

int

ValueCounts

Gets or sets the value distribution.

public Dictionary<string, long> ValueCounts { get; set; }

Property Value

Dictionary<string, long>