wtd.stat.ang: Weighted extrinsic mean direction and mean resultant length

Description Usage Arguments Value References Examples

View source: R/wtd.stat.ang.R

Description

wtd.stat.ang computes weighted extrinsic mean direction and mean resultant length.

Usage

1

Arguments

data

angular data whose elements are in [0, 2π)

w

numeric vector whose each element is non-negative and sum(w) == 1. Moreover, the length of w is the same with nrow(data).

Value

list which is consisting of the following components:

Mean weighted extrinsic mean direction

R mean resultant length

References

Jung, S., Park, K., & Kim, B. (2021). Clustering on the torus by conformal prediction. The Annals of Applied Statistics, 15(4), 1583-1603.

Examples

1
2
3
4
5
6
data <- matrix(c(pi/3, pi/3, pi/2,
                 pi, pi/4, pi/2,
                 0, pi/3, pi/6),
               ncol = 3, byrow = TRUE)
w <- c(0.3, 0.3, 0.4)
wtd.stat.ang(data, w)

ClusTorus documentation built on Jan. 4, 2022, 5:07 p.m.