import random
pos = ["A", "B", "C"]
x = random.choice["A", "B", "C"]
This code gives me either "A", "B" or "C" with equal probability. Is there a nice way to express it when you want "A" with 30%, "B" with 40% and "C" with 30% probability?
This code gives me either "A", "B" or "C" with equal probability. Is there a nice way to express it when you want "A" with 30%, "B" with 40% and "C" with 30% probability? |
|||||||
|
|
Weights define a probability distribution function (pdf). Random numbers from any such pdf can be generated by applying its associated inverse cumulative distribution function to uniform random numbers between 0 and 1. See also this SO explanation, or, as explained by Wikipedia:
|
||||
|
|
|
Not... so much...
or
|
|||||
|
|
Here's a class to expose a bunch of items with relative probabilities, without actually expanding the list:
Now, just say:
|
|||||||||
|
|
There are some good solutions offered here, but I would suggest that you look at Eli Bendersky's thorough discussion of this issue, which compares various algorithms to achieve this (with implementations in Python) before choosing one. |
||||
|
|
|
You can also make use this form, which does not create a list arbitrarily big (and can work with either integral or decimal probabilities):
|
||||
|
Try this:
|
||||
|