pemp.Rd
Empirical cumulative density function based on a sample of observations, as used by described by Chakraborti (2006).
pemp(q, sample)
numeric vector of values to evaluate
numeric vector of sample values to base the ECDF on
Returns the probabilities that a value drawn at random from the empirical cumulative density based on sample is smaller than or equal to the elements of x.
Chakraborti, S., Hong, B., & Van De Wiel, M. A. (2006). A note on sample size determination for a nonparametric test of location. Technometrics, 48(1), 88–94. https://doi.org/10.1198/004017005000000193
x <- 1:5
pemp(1, x)
#> [1] 0.1666667