Random values simulation from a von Mises distribution {Rfast} | R Documentation |
Random values simulation from a von Mises distribution
Description
It generates random vectors following the von Mises distribution. The data can be spherical or hyper-spherical.
Usage
rvonmises(n, m, k, rads = TRUE)
Arguments
n |
The sample size. |
m |
The mean angle expressed in radians or degrees. |
k |
The concentration parameter. If k is zero the sample will be generated from the uniform distribution over |
rads |
If the mean angle is expressed in radians, this should be TRUE and FALSE otherwise. The simulated data will be expressed in radians or degrees depending on what the mean angle is expressed. |
Details
The mean direction is transformed to the Euclidean coordinates (i.e. unit vector) and then the fvmf function is employed. It uses a rejection smapling as suggested by Andrew Wood in 1994. I have mentioned the description of the algorithm as I found it in Dhillon and Sra in 2003. Finally, the data are transformed to radians or degrees.
Value
A vector with the simulated data.
Author(s)
Michail Tsagris and Manos Papadakis
R implementation and documentation: Michail Tsagris <mtsagris@uoc.gr> and Manos Papadakis <papadakm85@gmail.com>
References
Wood, A. T. (1994). Simulation of the von Mises Fisher distribution. Communications in statistics-simulation and computation, 23(1): 157-164.
Dhillon, I. S., & Sra, S. (2003). Modeling data using directional distributions. Technical Report TR-03-06, Department of Computer Sciences, The University of Texas at Austin. http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.75.4122&rep=rep1&type=pdf
See Also
Examples
x <- rvonmises(1000, 2, 25, rads = TRUE)
res<-vm.mle(x)