class Google::Apis::DlpV2::GooglePrivacyDlpV2DeltaPresenceEstimationQuasiIdValues

A tuple of values for the quasi-identifier columns.

Attributes

estimated_probability[RW]

The estimated probability that a given individual sharing these quasi- identifier values is in the dataset. This value, typically called δ, is the ratio between the number of records in the dataset with these quasi-identifier values, and the total number of individuals (inside and outside the dataset) with these quasi-identifier values. For example, if there are 15 individuals in the dataset who share the same quasi-identifier values, and an estimated 100 people in the entire population with these values, then δ is 0.15. Corresponds to the JSON property `estimatedProbability` @return [Float]

quasi_ids_values[RW]

The quasi-identifier values. Corresponds to the JSON property `quasiIdsValues` @return [Array<Google::Apis::DlpV2::GooglePrivacyDlpV2Value>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/dlp_v2/classes.rb, line 1967
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 1972
def update!(**args)
  @estimated_probability = args[:estimated_probability] if args.key?(:estimated_probability)
  @quasi_ids_values = args[:quasi_ids_values] if args.key?(:quasi_ids_values)
end