Struct google_dlp2::GooglePrivacyDlpV2DeltaPresenceEstimationHistogramBucket[][src]

pub struct GooglePrivacyDlpV2DeltaPresenceEstimationHistogramBucket {
    pub bucket_values: Option<Vec<GooglePrivacyDlpV2DeltaPresenceEstimationQuasiIdValues>>,
    pub bucket_value_count: Option<i64>,
    pub min_probability: Option<f64>,
    pub max_probability: Option<f64>,
    pub bucket_size: Option<String>,
}

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.

This type is not used in any activity, and only used as part of another schema.

Fields

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

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

Between 0 and 1.

Always greater than or equal to min_probability.

Number of records within these probability bounds.

Trait Implementations

Auto Trait Implementations