Interface IStatistics

interface IStatistics {
    count: number;
    hist: readonly IBin<number>[];
    max: number;
    maxBin: number;
    mean: number;
    min: number;
    missing: number;
}

Hierarchy (view full)

Properties

count: number
hist: readonly IBin<number>[]
max: number
maxBin: number
mean: number
min: number
missing: number