Created
December 28, 2016 12:34
-
-
Save craftybones/009fc30a8c1d9b8d479a7571517c2b05 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(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