Random values simulation from the multivariate Cauchy distribution {mvcauchy} | R Documentation |
Random values simulation from the multivariate Cauchy distribution
Description
Random values simulation from the multivariate Cauchy distribution.
Usage
rmvcauchy(n, mu, sigma)
Arguments
n |
The sample size, a numerical value. |
mu |
The mean vector in |
sigma |
The scatter matrix in |
Value
A matrix with the simulated data.
Author(s)
Michail Tsagris.
R implementation and documentation: Michail Tsagris mtsagris@uoc.gr.
References
Aitchison J. (1986). The statistical analysis of compositional data. Chapman & Hall.
See Also
Examples
x <- as.matrix(iris[, 1:4])
mod <- mvcauchy.mle(x)
m <- mod$location
s <- mod$scatter
y <- rmvcauchy(1000, m, s)
mvcauchy.mle(y)
[Package mvcauchy version 1.1 Index]