Sobolev_coefs {sphunif} | R Documentation |
Transformation between different coefficients in Sobolev statistics
Description
Given a Sobolev statistic
for a sample ,
, three important sequences
are related to
.
-
Gegenbauer coefficients
of
(see, e.g., the projected-ecdf statistics), given by
Weights
of the asymptotic distribution of the Sobolev statistic,
, given by
Gegenbauer coefficients
of the local projected alternative associated to
, given by
For , the factor
is replaced by
.
Usage
bk_to_vk2(bk, p, log = FALSE)
bk_to_uk(bk, p, signs = 1)
vk2_to_bk(vk2, p, log = FALSE)
vk2_to_uk(vk2, p, signs = 1)
uk_to_vk2(uk, p)
uk_to_bk(uk, p)
Arguments
bk |
coefficients |
p |
integer giving the dimension of the ambient space |
log |
do operations in log scale (log-in, log-out)? Defaults to
|
signs |
signs of the coefficients |
vk2 |
squared coefficients |
uk |
coefficients |
Details
See more details in Prentice (1978) and García-Portugués et al. (2023). The
adequate signs of uk
for the "PRt"
Rothman test
can be retrieved with akx
and sqr = TRUE
, see the
examples.
Value
The corresponding vectors of coefficients vk2
, bk
, or
uk
, depending on the call.
References
García-Portugués, E., Navarro-Esteban, P., Cuesta-Albertos, J. A. (2023) On a projection-based class of uniformity tests on the hypersphere. Bernoulli, 29(1):181–204. doi:10.3150/21-BEJ1454.
Prentice, M. J. (1978). On invariant tests of uniformity for directions and orientations. The Annals of Statistics, 6(1):169–176. doi:10.1214/aos/1176344075
Examples
# bk, vk2, and uk for the PCvM test in p = 3
(bk <- Gegen_coefs_Pn(k = 1:5, type = "PCvM", p = 3))
(vk2 <- bk_to_vk2(bk = bk, p = 3))
(uk <- bk_to_uk(bk = bk, p = 3))
# vk2 is the same as
weights_dfs_Sobolev(K_max = 10, thre = 0, p = 3, type = "PCvM")$weights
# bk and uk for the Rothman test in p = 3, with adequate signs
t <- 1 / 3
(bk <- Gegen_coefs_Pn(k = 1:5, type = "PRt", p = 3, Rothman_t = t))
(ak <- akx(x = drop(q_proj_unif(t, p = 3)), p = 3, k = 1:5, sqr = TRUE))
(uk <- bk_to_uk(bk = bk, p = 3, signs = ak))