| DataControl {simFrame} | R Documentation |
Create objects of class "DataControl".
DataControl(...)
... |
arguments passed to new("DataControl", ...). |
An object of class "DataControl".
Andreas Alfons, alfons@statistik.tuwien.ac.at
require(MASS)
mu <- rep(0, 2)
Sigma <- matrix(c(1, 0.5, 0.5, 1), 2, 2)
dc <- DataControl(size = 10, distribution = mvrnorm,
dots = list(mu = mu, Sigma = Sigma))
generate(dc)