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

GooglePrivacyDlpV2DeltaPresenceEstimationHistogramBucket

import type { GooglePrivacyDlpV2DeltaPresenceEstimationHistogramBucket } from "https://googleapis.deno.dev/v1/dlp:v2.ts";

A DeltaPresenceEstimationHistogramBucket message with the following values: min_probability: 0.1 max_probability: 0.2 frequency: 42 means that there are 42 records for which δ is in [0.1, 0.2). An important particular case is when min_probability = max_probability = 1: then, every individual who shares this quasi-identifier combination is in the dataset.

interface GooglePrivacyDlpV2DeltaPresenceEstimationHistogramBucket {
bucketSize?: bigint;
bucketValueCount?: bigint;
maxProbability?: number;
minProbability?: number;
}

§Properties

§
bucketSize?: bigint
[src]

Number of records within these probability bounds.

§
bucketValueCount?: bigint
[src]

Total number of distinct quasi-identifier tuple values in this bucket.

§

Sample of quasi-identifier tuple values in this bucket. The total number of classes returned per bucket is capped at 20.

§
maxProbability?: number
[src]

Always greater than or equal to min_probability.

§
minProbability?: number
[src]

Between 0 and 1.