dag_test_ISS {ISS} | R Documentation |
dag_test_ISS
Description
Implements the DAG testing procedure given in Algorithm 1 by Müller et al. (2023).
Usage
dag_test_ISS(X0, p, alpha)
Arguments
X0 |
a numeric matrix giving points corresponding to hypotheses. |
p |
a numeric vector taking values in (0, 1] such that |
alpha |
a numeric value in (0, 1] specifying the Type I error rate. |
Value
A boolean vector of the same length as p
with each element being TRUE
if the corresponding hypothesis is rejected and FALSE
otherwise.
References
Müller MM, Reeve HWJ, Cannings TI, Samworth RJ (2023). “Isotonic subgroup selection.” arXiv preprint arXiv:2305.04852.
Examples
X0 <- rbind(c(0.5, 0.6), c(0.8, 0.9), c(0.9, 0.8))
p <- c(0.02, 0.025, 0.1)
alpha <- 0.05
dag_test_ISS(X0, p, alpha)
[Package ISS version 1.0.0 Index]