vonmises | R Documentation |
Density, probability distribution function, quantiles, and random generation for the circular normal distribution with mean and kappa.
rvm(n, mean, kappa)
dvm(theta, mean, kappa)
pvm(theta, mean, kappa, from = NULL, tol = 1e-20)
qvm(p, mean = 0, kappa, from = NULL, tol = .Machine$double.eps^(0.6))
n |
number of observations in degrees |
mean |
mean in degrees |
kappa |
concentration parameter |
theta |
angular value in degrees |
from |
if |
tol |
the precision in evaluating the distribution function or the quantile. |
p |
numeric vector of probabilities with values in |
dvm
gives the density,
pvm
gives the probability of the von Mises distribution function,
rvm
generates random deviates (in degrees), and
qvm
provides quantiles (in degrees).
x <- rvm(100, mean = 90, kappa = 2)
dvm(x, mean = 90, kappa = 2)
pvm(x, mean = 90, kappa = 2)
qvm(c(.25, .5, .75), mean = 90, kappa = 2)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.