powered by
Suppose that we select one point from each of a set of n intervals and rank them. The k-bottom set is the set of intervals whose points can have a rank of n + 1 - k or higher.
bottomSet(intervals, k)
data frame (see generateIntervals for the required format)
cutoff for inclusion
Indices of intervals in the k-bottom set.
See section 4.2 of Rising (2021).
Rising, Justin (2021). Uncertainty in Ranking. arXiv:2107.03459.
# NOT RUN { intervals <- data.frame(left = 1:4, right = 1:4 + 0.5) bottomSet(intervals, 2) # }
Run the code above in your browser using DataLab