multiNormalDist {HVT} | R Documentation |
Function to generate multivariate normal distribution where each variable has a standard normal distribution N(0,1)
multiNormalDist(sample.size = 2500, ncol = 5)
sample.size |
Numeric. Indicating the sample size for distribution |
ncol |
Numeric. Indicating the number of columns |
The multivariate normal distribution, multivariate Gaussian distribution, or joint normal distribution is a generalization of the one-dimensional (univariate) normal distribution to higher dimensions. It is a vector in multiple normally distributed variables, such that any linear combination of the variables is also normally distributed.
Datafrakme containing multinomial distribution with the given sample size and number of columns
Shubhra Prakash <shubhra.prakash@mu-sigma.com>
multiNormalDist(2500, 2)
x <- multiNormalDist(2500, 2)
hist(x[, 1])