Noise Generator (NoiseGenerator)
The Noise Generator masks values in numeric columns. It adds or multiplies the original value by random noise.
Link object structure
The Noise Generator does not support linking. It can be either self-consistent or consistent with another column. You cannot configure differential privacy.
The metadata
object is populated from the NoiseMetadata
object. The generator configuration includes:
Whether to use additive or multiplicative noise.
For additive noise, the percentage of the underlying value to scale the noise to.
For multiplicative, the minimum and maximum value for the scaling factor.
Example replacement
In this example replacement for the Noise Generator, the additive noise strategy is used. It scales the noise to 10% of the underlying value. The generator is consistent with the name
column.
Last updated