Density of the SESPC distribution {Directional} | R Documentation |
Density of the SESPC distribution
Description
Density of the SESPC distribution.
Usage
dsespc(y, mu, theta, logden = FALSE)
Arguments
y |
A matrix or a vector with the data expressed in Euclidean coordinates, i.e. unit vectors. |
mu |
The mean vector the SESPC distribution, a vector in |
theta |
The two |
logden |
If you the logarithm of the density values set this to TRUE. |
Details
The density of the SESPC distribution is computed.
Value
A vector with the (log) density values of y.
Author(s)
Michail Tsagris.
R implementation and documentation: Michail Tsagris mtsagris@uoc.gr.
References
Tsagris M. and Alzeley O. (2023). Circular and spherical projected Cauchy distributions: A Novel Framework for Circular and Directional Data Modeling. https://arxiv.org/pdf/2302.02468.pdf
Mardia K. V. and Jupp P. E. (2000). Directional statistics. Chicester: John Wiley & Sons.
See Also
Examples
m <- colMeans( as.matrix( iris[,1:3] ) )
y <- rsespc(1000, m, c(1, 1))
mod <- sespc.mle(y)
dsespc( y, mod$mu, mod$theta)