Last chance! 50% off unlimited learning
Sale ends in
These functions provide the density and random number generation for the multivariate normal distribution, given the Cholesky parameterization.
dmvnc(x, mu, U, log=FALSE)
rmvnc(n=1, mu, U)
This is data or parameters in the form of a vector of length
This is the number of random draws.
This is mean vector
This is the
Logical. If log=TRUE
, then the logarithm of the
density is returned.
dmvnc
gives the density and
rmvnc
generates random deviates.
Application: Continuous Multivariate
Density:
Inventor: Unknown (to me, anyway)
Notation 1:
Notation 2:
Notation 3:
Notation 4:
Parameter 1: location vector
Parameter 2:
Mean:
Variance:
Mode:
The multivariate normal distribution, or multivariate Gaussian
distribution, is a multidimensional extension of the one-dimensional
or univariate normal (or Gaussian) distribution. A random vector is
considered to be multivariate normally distributed if every linear
combination of its components has a univariate normal distribution.
This distribution has a mean parameter vector chol
function for Cholesky decomposition.
In practice, dmvn
, dmvnc
must additionally
matrix-multiply the Cholesky back to the covariance matrix, but it
does not have to check for or correct the covariance matrix to
positive-definiteness, which overall is slower. Compared with
rmvn
, rmvnc
is faster because the Cholesky decomposition
has already been performed.
For models where the dependent variable, Y, is specified to be
distributed multivariate normal given the model, the Mardia test (see
plot.demonoid.ppc
, plot.laplace.ppc
, or
plot.pmc.ppc
) may be used to test the residuals.
chol
,
dinvwishartc
,
dmvn
,
dmvnp
,
dmvnpc
,
dnorm
,
dnormp
,
dnormv
,
plot.demonoid.ppc
,
plot.laplace.ppc
, and
plot.pmc.ppc
.
# NOT RUN {
library(LaplacesDemon)
Sigma <- diag(3)
U <- chol(Sigma)
x <- dmvnc(c(1,2,3), c(0,1,2), U)
X <- rmvnc(1000, c(0,1,2), U)
joint.density.plot(X[,1], X[,2], color=TRUE)
# }
Run the code above in your browser using DataLab