View source: R/distributions.r
dmvnorm2 | R Documentation |
This is an alternative parameterization of the ordinary multivariate Gaussian probability density.
dmvnorm2( x , Mu , sigma , Rho , log=FALSE )
rmvnorm2( n , Mu=rep(0,length(sigma)) , sigma=rep(1,length(Mu)) ,
Rho=diag(length(Mu)) , method="chol" )
x |
Values to compute densities of |
Mu |
Mean vector |
sigma |
Vector of standard deviations |
Rho |
Correlation matrix |
log |
If |
n |
Number of random observations to sample |
These functions merely compose the variance-covariance matrix from separate standard deviation and correlation matrix arguments. They then use dmvnorm
and rmvnorm
from the mvtnorm
package to perform calculations.
Richard McElreath
dmvnorm2( c(1,0) , Mu=c(0,0) , sigma=c(1,1) , Rho=diag(2) )
rmvnorm2( 10 , Mu=c(1,2) )
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.