View source: R/mnntestimationresultantvector.R
mnntestimationresultantvector | R Documentation |
Computes the c parameter vector estimate based on the mean resultant vector of the vectors of observed trigonometric moments
mnntestimationresultantvector(data,M=0,R=1)
data |
Data frame with the observed vectors of angles. The number of columns must be equal to R |
M |
Vector of M parameters. A nonnegative integer number for each of the R components of the vector |
R |
Number of dimensions |
cestimates |
A matrix with the index and values of the c parameters estimates of the MNNTS density |
Juan Jose Fernandez-Duran and Maria Mercedes Gregorio-Dominguez
Fernandez-Duran and J. J. and Gregorio-Dominguez and M. M (2023). Multivariate Nonnegative Trigonometric Sums Distributions for High-Dimensional Multivariate Circular Data, arXiv preprint arXiv:2301.03643v2
# A bivariate dataset
Mbiv<-c(2,3)
Rbiv<-length(Mbiv)
data(Nest)
data<-Nest*(pi/180)
estmeanresultant<-mnntestimationresultantvector(data,M=Mbiv,R=Rbiv)
estmeanresultant
# A trivariate dataset
Mtriv<-c(2,3,3)
Rtriv<-length(Mtriv)
data(WindDirectionsTrivariate)
data<-WindDirectionsTrivariate
estmeanresultant<-mnntestimationresultantvector(data,M=Mtriv,R=Rtriv)
estmeanresultant
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.