A conventional histogram (e.g., created by histogramFromNumbers). Can be converted to a Table by histograms2table. As described in histogramFromNumbers, there always will be a special bin for minimum.

interface Histogram {
    bins: number[];
    binSize: number;
    max: number;
    mean: number;
    median: number;
    min: number;
    name: string;
    std: number;
}

Properties

bins: number[]

Values located in each bin

binSize: number

The configured size of each bin (stored explicitly to avoid semantic confusion with floating point arithmetic/problems with different rounding schemes)

max: number

Maximum value encountered (inclusive maximum of the underlying value range)

mean: number

Average of the included numbers

median: number

Median of the included numbers

min: number

Minimum value encountered (inclusive minimum of the underlying value range)

name: string

A name intended for humans to know what the histogram is about.

std: number

Standard deviation of the included numbers