Selecting without any weights (equal probabilities) is beautifully described here.
I was wondering if there is a way to convert this approach to a weighted one.
I am also interested in other approaches as well.
Update: Sampling without replacement
|
Selecting without any weights (equal probabilities) is beautifully described here. I was wondering if there is a way to convert this approach to a weighted one. I am also interested in other approaches as well. Update: Sampling without replacement |
|||||||||||||||
|
|
If the sampling is with replacement, you can use this algorithm (implemented here in Python):
This is O(n + m) where m is the number of items. Why does this work? It is based on the following algorithm:
The function This in turn works because the probability that n random numbers 0..v will all happen to be less than z is P = (z/v)n. Solve for z, and you get z = vP1/n. Substituting a random number for P picks the largest number with the correct distribution; and we can just repeat the process to select all the other numbers. If the sampling is without replacement, you can put all the items into a binary heap, where each node caches the total of the weights of all items in that subheap. Building the heap is O(m). Selecting a random item from the heap, respecting the weights, is O(log m). Removing that item and updating the cached totals is also O(log m). So you can pick n items in O(m + n log m) time. Here's an implementation of that, plentifully commented:
|
|||||||||||||
|
|
If the sampling is with replacement, use the roulette-wheel selection technique (often used in genetic algorithms):
If the sampling is without replacement, you can adapt the above technique by removing the selected element from the list after each iteration, then re-normalizing the weights so that their sum is 1 (valid probability distribution function) |
|||||||||||||||
|
|
If you want to generate large arrays of random integers with replacement, you can use piecewise linear interpolation. For example, using NumPy/SciPy:
This is not effective if you want to sample without replacement. |
||||
|
|
|
In the question you linked to, Kyle's solution would work with a trivial generalization. Scan the list and sum the total weights. Then the probability to choose an element should be: 1 - (1 - (#needed/(weight left)))/(weight at n). After visiting a node, subtract it's weight from the total. Also, if you need n and have n left, you have to stop explicitly. You can check that with everything having weight 1, this simplifies to kyle's solution. Edited: (had to rethink what twice as likely meant) |
|||||||||||||
|
|
I've done this in Ruby https://github.com/fl00r/pickup
|
||||
|
|
|
Here's a Go implementation from geodns:
|
|||
|
|
|
I used a associative map (weight,object). for example:
peek a random number between 0 and 'total' and iterate over the keys until this number fits in a given range. |
|||||
|