ContControl {simFrame} | R Documentation |
Create contamination control objects
Description
Create objects of a class inheriting from "ContControl"
.
Usage
ContControl(..., type = c("DCAR", "DAR"))
Arguments
... |
arguments passed to |
type |
a character string specifying whether a control object of class
|
Value
If type = "DCAR"
, an object of class "DCARContControl"
.
If type = "DAR"
, an object of class "DARContControl"
.
Note
This constructor exists mainly for back compatibility with early draft
versions of simFrame
.
Author(s)
Andreas Alfons
See Also
"DCARContControl"
, "DARContControl"
,
"ContControl"
Examples
## distributed completely at random
data(eusilcP)
sam <- draw(eusilcP[, c("id", "eqIncome")], size = 20)
dcarc <- ContControl(target = "eqIncome", epsilon = 0.05,
dots = list(mean = 5e+05, sd = 10000), type = "DCAR")
contaminate(sam, dcarc)
## distributed at random
foo <- generate(size = 10, distribution = rnorm,
dots = list(mean = 0, sd = 2))
darc <- ContControl(target = "V1", epsilon = 0.2,
fun = function(x) x * 100, type = "DAR")
contaminate(foo, darc)
[Package simFrame version 0.5.4 Index]