Free Access Week - Data Engineering + BI
Data Engineering and BI courses are free this week!
Free Access Week - Jun 2-8

rvalues (version 0.7.1)

OverlapCurve: Overlap Curve

Description

Estimates the expected proportion of units in the top fraction and those deemed to be in the top fraction by the r-value procedure. If plot=TRUE, the curve is plotted before the estimated function is returned.

Usage

OverlapCurve(object, plot = TRUE, xlim, ylim, xlab, ylab, main, ...)

Arguments

object

An object of class "rvals"

plot

logical. If TRUE, the estimated overlap curve is plotted.

xlim, ylim

x and y - axis limits for the plot

xlab,ylab

x and y - axis labels

main

the title of the plot

additional arguments to plot.default

Value

A function returning estimated overlap values.

Details

For parameters of interest θ1,...,θn and corresponding r-values r1,...,rn, the overlap at a particular value of α is defined to be overlap(α)=P(θiθα,riα), where the threshold θα is the upper-αth quantile of the distribution of the θi (i.e., P(θiθα)=α). OverlapCurve estimates this overlap for values of alpha across (0,1) and plots (if plot=TRUE) the resulting curve.

References

Henderson, N.C. and Newton, M.A. (2016). Making the cut: improved ranking and selection for large-scale inference. J. Royal Statist. Soc. B., 78(4), 781-804. 10.1111/rssb.12131 https://arxiv.org/abs/1312.5776

Examples

Run this code
# NOT RUN {
n <- 500
theta <- rnorm(n)
ses <- sqrt(rgamma(n,shape=1,scale=1))
XX <- theta + ses*rnorm(n)
dd <- cbind(XX,ses)

rvs <- rvalues(dd, family = gaussian)

OverlapCurve(rvs, cex.main = 1.5)
# }

Run the code above in your browser using DataLab