DPParamsDel-class function

An S4 class for relaxed differential privacy parameters.

An S4 class for relaxed differential privacy parameters.

An S4 base class representing the privacy parameters in (ϵ,δ)(\epsilon,\delta)-differential privacy. class

## S4 method for signature 'DPParamsDel' show(object) ## S4 method for signature 'DPParamsDel' getDelta(object) ## S4 replacement method for signature 'DPParamsDel' setDelta(object) <- value ## S4 method for signature 'DPParamsDel,numeric' toGamma(object, gamma)

Arguments

  • object: an object of class DPParamsDel.
  • value: a scalar numeric δ\delta.
  • gamma: a scalar numeric γ\gamma.

Methods (by generic)

  • show: automatically prints the object.
  • getDelta: getter for slot delta.
  • setDelta\<-: setter for slot delta.
  • toGamma: returns object to corresponding instance of subclass DPParamsGam.

Slots

  • epsilon: positive scalar numeric privacy level.
  • delta: a scalar numeric privacy level in interval [0,1).

See Also

DPParamsEps superclass, DPParamsGam subclass for random relaxation.