mnntestimationresultantvector {CircNNTSRmult}R Documentation

c Parameter Vector Estimate

Description

Computes the c parameter vector estimate based on the mean resultant vector of the vectors of observed trigonometric moments

Usage

mnntestimationresultantvector(data,M=0,R=1)

Arguments

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

Value

cestimates

A matrix with the index and values of the c parameters estimates of the MNNTS density

Author(s)

Juan Jose Fernandez-Duran and Maria Mercedes Gregorio-Dominguez

References

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

Examples

# 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


[Package CircNNTSRmult version 0.1.0 Index]