rmvnorm {Riemann} | R Documentation |
Generate Random Samples from Multivariate Normal Distribution
Description
In , random samples are drawn
where is a mean vector and
is a positive definite covariance matrix.
Usage
rmvnorm(n = 1, mu, sigma)
Arguments
n |
the number of samples to be generated. |
mu |
mean vector. |
sigma |
covariance matrix. |
Value
either (1) a length- vector (
) or (2) an
matrix where rows are random samples.
Examples
#-------------------------------------------------------------------
# Generate Random Data and Compare with Empirical Covariances
#
# In R^5 with zero mean and diagonal covariance,
# generate 100 and 200 observations and compute MLE covariance.
#-------------------------------------------------------------------
## GENERATE DATA
mymu = rep(0,5)
mysig = diag(5)
## MLE FOR COVARIANCE
smat1 = stats::cov(rmvnorm(n=100, mymu, mysig))
smat2 = stats::cov(rmvnorm(n=200, mymu, mysig))
## VISUALIZE
opar <- par(no.readonly=TRUE)
par(mfrow=c(1,3), pty="s")
image(mysig[,5:1], axes=FALSE, main="true covariance")
image(smat1[,5:1], axes=FALSE, main="empirical cov with n=100")
image(smat2[,5:1], axes=FALSE, main="empirical cov with n=200")
par(opar)
[Package Riemann version 0.1.4 Index]