Given the mean and desired correlations, generate normal, correlated variables.
get_corvars(n = 10, mu, sigma, tol = 1e-06, seed = NULL)
The number of samples required.
A vector with the means for the variables.
A symmetric, positive-definite matrix with the (co)variance or correlation matrix of the variables.
Tolerance (relative to largest variance) for numerical lack of positive-definiteness in sigma.
An integer value interpreted as seed.
A tibble containing the simulated data.
# NOT RUN {
sigma <- matrix(c(1, .3, 0,
.3, 1, .9,
0, .9, 1),3,3)
mu <- c(6,50,5)
df <- get_corvars(n = 10000, mu = mu, sigma = sigma, seed = 101010)
means_by(df)
cor(df)
# }
Run the code above in your browser using DataLab