md.norm {missDeaths} | R Documentation |
Creates information of a normally distributed numeric covariate with the specified mean and standard deviation.
This function call must be added to the md.simparams
object.
md.norm(name, mean = 0, sd = 1)
name |
name of the covariate |
mean , sd |
mean and standard deviation |
## Not run:
library(missDeaths)
sim = md.simparams() +
md.norm("X", 0, 1)
## End(Not run)