Interface DatasetDistribution

Distribution computed over a tuning dataset.

interface DatasetDistribution {
    buckets?: DatasetDistributionDistributionBucket[];
    max?: number;
    mean?: number;
    median?: number;
    min?: number;
    p5?: number;
    p95?: number;
    sum?: number;
}

Properties

Output only. Defines the histogram bucket.

max?: number

Output only. The maximum of the population values.

mean?: number

Output only. The arithmetic mean of the values in the population.

median?: number

Output only. The median of the values in the population.

min?: number

Output only. The minimum of the population values.

p5?: number

Output only. The 5th percentile of the values in the population.

p95?: number

Output only. The 95th percentile of the values in the population.

sum?: number

Output only. Sum of a given population of values.