Skip to content

Instantly share code, notes, and snippets.

@craftybones
Created December 28, 2016 12:34
Show Gist options
  • Save craftybones/009fc30a8c1d9b8d479a7571517c2b05 to your computer and use it in GitHub Desktop.
Save craftybones/009fc30a8c1d9b8d479a7571517c2b05 to your computer and use it in GitHub Desktop.
(def event-probability-distribution {:red 20 :green 50 :yellow 30})
(def color-generator (utils.core/random-event-generator event-probability-distribution))
(def random-colors (repeatedly color-generator))
(def sample (take 100 random-colors))
(frequencies sample)
; {:yellow 37, :green 44, :red 19}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment