show/hide this revision's text 5 fixed bug in code
  • Assuming that this key has N_VALS values associated with it and there are TOTAL_VALS total values in the entire dictionary, accept this key with a probability N_VALS / TOTAL_VALS.
  • If you get here without accepting a valueN_REMAINING, go back to step 1where N_REMAINING is the number of items left in the list.
  • def select_weighted( d = { 'a': [1, 3, 2], 'b': [6], 'c': [0, 0] accept_prob = float( 1.0 / total ) found = 0selected_key = ''while found =n_seen = 0 current_key = key for val in d[key]: dice_roll = random.random() accept_prob = float( len(d[key]) ) 1.0 / ( total dice_roll = random.random(- n_seen ) ) n_seen = n_seen + 1 if accept_prob < dice_roll <= accept_prob: selected_key return current_key 'a': [1, 3, 2], 'b': [6], 'c': [0, 0]counts = {}for key found in dict: counts[key] = 0for s in range(1,100000): k = select_weighted(dict) counts[k] = counts[k] + 1print "selection is " + selected_key
    b 13
    {'a': 49801, 'c': 33548, 'b': 16650}
    {'a': 0.5, 'c': 0.33333333333333331, 'b': 0.16666666666666666}

    Edit: Miles pointed out a 50b 16.67 (or 1/6)c 33.33 (or 1/3)serious error in my original implementation, which has since been corrected. Sorry about that!

    show/hide this revision's text 4 fixed a bug in code, tried to improve explanation

    Do you always know the total number of values in the dictionary? If so, this might be easy to do with the following algorithm, which can be used whenever you want to make a probabilistic selection of some items from an ordered list:

    1. Iterate over your list of keys.
    2. Generate a uniformly distributed random value between 0 and 1 (aka "roll the dice").
    3. Assuming that this key has N_VALS values associated with it and there are TOTAL_VALS total values in the entire dictionary, accept this key with a probability N_VALS / TOTAL_VALS.
    4. If you get here without accepting a value, go back to step 1.

    This algorithm has the advantage of not having to generate any new lists, which is good for situations in which you have very large dictionaries or a important if your dictionary is largenumber of values associated with one or more keys. You're Your program is only paying for the loop over K keys to calculate the total, a another loop over the keys which will on average end halfway through, and whatever it costs to generate a random number between 0 and 1. Generating such a random number is a very common application in programming, so most languages have a fast implementation of such a function. In Python the random number generator a C implementation of the Mersenne Twister algorithm, which should be very fastand also threadsafe. Additionally, the documentation claims that this implementation is thread-safe.

    Here's the code. I'm sure that you can clean it up if you'd like to use more Pythonic features:

    #!/usr/bin/python
    
    import random
    
    d = {
       'a': [1, 3, 2],
       'b': [6],
       'c': [0, 0]
    }
    
    # calculate total
    total = 0
    for key in d:
       total = total + len(d[key])
    
    # pick a weighted value from d
    found = 0
    selected_key = ''
    while found == 0:
       for key in d:
          accept_prob = float( len(d[key]) ) / total
          dice_roll = random.random()
    
          if accept_prob < dice_roll:
             selected_key = key
             found = 1
             break
    
    print "selection is " + key
    selected_key
    

    After running this 100 times, I get these valuesselect keys this number of times:

    b 13
    c 35
    a 52
    

    Those are fairly close to your expected values of:

    a 50
    b 16.67 (or 1/6)
    c 33.33 (or 1/3)
    
    show/hide this revision's text 3 added more information about why this is a good idea.

    Do you always know the total number of values in the dictionary? If so, this might be easy to do with the following algorithm:

    1. Iterate over your list of keys.
    2. Generate a uniformly distributed random value between 0 and 1 (aka "roll the dice").
    3. Assuming that this key has N_VALS values associated with it and there are TOTAL_VALS total values in the entire dictionary, accept this key with a probability N_VALS / TOTAL_VALS.
    4. If you get here without accepting a value, go back to step 1.

    This algorithm has the advantage of not having to generate any new lists, which is good for situations in which you have very large dictionaries or a large number of values associated with one or more keys. You're only paying for the loop over K keys to calculate the total, a another loop over the keys which will on average end halfway through, and whatever it costs to generate a random number between 0 and 1. In Python the random number generator a C implementation of the Mersenne Twister algorithm, which should be very fast and also threadsafe.

    Here's the code. I'm sure that you can clean it up if you'd like to use more Pythonic features:

    #!/usr/bin/python
    
    import random
    
    d = {
       'a': [1, 3, 2],
       'b': [6],
       'c': [0, 0]
    }
    
    # calculate total
    total = 0
    for key in d:
       total = total + len(d[key])
    
    # pick a weighted value from d
    found = 0
    selected_key = ''
    while found == 0:
       for key in d:
          accept_prob = float( len(d[key]) ) / total
          dice_roll = random.random()
    
          if accept_prob < dice_roll:
             selected_key = key
             found = 1
             break
    
    print "selection is " + key
    

    After running this 100 times, I get these values:

    b 13
    c 35
    a 52
    

    Those are fairly close to your expected values of:

    a 50
    b 16.67 (or 1/6)
    c 33.33 (or 1/3)
    
    show/hide this revision's text 2 edited code and grammar
    show/hide this revision's text 1