wrswoR (version 1.1)

wrswoR-package: Faster weighted sampling without replacement

Description

R's default sampling without replacement using base::sample.int() seems to require quadratic run time, e.g., when using weights drawn from a uniform distribution. For large sample sizes, this is too slow. This package contains several alternative implementations.

Arguments

Details

Implementations are adapted from http://stackoverflow.com/q/15113650/946850.

References

Efraimidis, Pavlos S., and Paul G. Spirakis. "Weighted random sampling with a reservoir." Information Processing Letters 97, no. 5 (2006): 181-185.

Wong, Chak-Kuen, and Malcolm C. Easton. "An efficient method for weighted sampling without replacement." SIAM Journal on Computing 9, no. 1 (1980): 111-113.

Examples

Run this code
# NOT RUN {
sample_int_rej(100, 50, 1:100)
# }

Run the code above in your browser using DataLab