Interface ICategoricalStatistics

interface ICategoricalStatistics {
    count: number;
    hist: readonly ICategoricalBin[];
    maxBin: number;
    missing: number;
}

Properties

count: number
hist: readonly ICategoricalBin[]
maxBin: number
missing: number