class Google::Apis::DlpV2::GooglePrivacyDlpV2DeltaPresenceEstimationHistogramBucket

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.

Attributes

bucket_size[RW]

Number of records within these probability bounds. Corresponds to the JSON property `bucketSize` @return [Fixnum]

bucket_value_count[RW]

Total number of distinct quasi-identifier tuple values in this bucket. Corresponds to the JSON property `bucketValueCount` @return [Fixnum]

bucket_values[RW]

Sample of quasi-identifier tuple values in this bucket. The total number of classes returned per bucket is capped at 20. Corresponds to the JSON property `bucketValues` @return [Array<Google::Apis::DlpV2::GooglePrivacyDlpV2DeltaPresenceEstimationQuasiIdValues>]

max_probability[RW]

Always greater than or equal to min_probability. Corresponds to the JSON property `maxProbability` @return [Float]

min_probability[RW]

Between 0 and 1. Corresponds to the JSON property `minProbability` @return [Float]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/dlp_v2/classes.rb, line 1933
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/dlp_v2/classes.rb, line 1938
def update!(**args)
  @bucket_size = args[:bucket_size] if args.key?(:bucket_size)
  @bucket_value_count = args[:bucket_value_count] if args.key?(:bucket_value_count)
  @bucket_values = args[:bucket_values] if args.key?(:bucket_values)
  @max_probability = args[:max_probability] if args.key?(:max_probability)
  @min_probability = args[:min_probability] if args.key?(:min_probability)
end