Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

OutlierStats

import type { OutlierStats } from "https://googleapis.deno.dev/v1/dataflow:v1b3.ts";

Statistics for the underflow and overflow bucket.

interface OutlierStats {
overflowCount?: bigint;
overflowMean?: number;
underflowCount?: bigint;
underflowMean?: number;
}

§Properties

§
overflowCount?: bigint
[src]

Number of values that are larger than the upper bound of the largest bucket.

§
overflowMean?: number
[src]

Mean of values in the overflow bucket.

§
underflowCount?: bigint
[src]

Number of values that are smaller than the lower bound of the smallest bucket.

§
underflowMean?: number
[src]

Mean of values in the undeflow bucket.