An S4 base class representing the privacy parameters in \((\epsilon,\delta,\gamma)\)-random differential privacy.
# S4 method for DPParamsGam show(object) # S4 method for DPParamsGam getGamma(object) # S4 method for DPParamsGam setGamma(object) <- value # S4 method for DPParamsGam,numeric toGamma(object, gamma)
| object | an object of class |
|---|---|
| value | a scalar numeric \(\gamma\). |
| gamma | scalar numeric \(\gamma\). |
show: automatically prints the object.
getGamma: getter for slot gamma.
setGamma<-: setter for slot gamma.
toGamma: returns object with set gamma; generic for use with
superclasses DPParamsEps and DPParamsDel.
epsilonpositive scalar numeric privacy level.
deltaa scalar numeric privacy level in interval [0,1).
gammaa scalar numeric privacy level in [0, 1).
DPParamsEps, DPParamsDel superclasses.