Simulates data from normal distributions given specified parameters.
sim.norm(
n.values,
mean.values,
sd.values,
num.experiments = 1,
variable.names = NULL,
seed = 1978,
vstr = 3.6
)A data.table containing the simulated data.
A numeric vector indicating the number of values to be simulated for each normal distribution.
A numeric vector indicating the mean values for each normal distribution.
A numeric vector indicating the standard deviation values for each normal distribution.
A single integer indicating the number of experiments to simulate. Default is 1.
A character vector with names for the variables. If NULL, default names "x1", "x2", ... will be used.
An integer to set as the seed for reproducibility. Default is 1978.
A character string specifying the RNG version. Default is "3.6".