Skip to content

Instantly share code, notes, and snippets.

@nicolamontecchio
Created June 11, 2013 17:10
Show Gist options
  • Select an option

  • Save nicolamontecchio/5758728 to your computer and use it in GitHub Desktop.

Select an option

Save nicolamontecchio/5758728 to your computer and use it in GitHub Desktop.
sample discrete distrib in python
def sample_discrete(probabilities):
bins = np.add.accumulate(probabilities)
return np.digitize([random.random()], bins)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment