Created
April 20, 2009 19:09
-
-
Save liebke/98678 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
(use '(incanter stats charts io)) | |
(doto (box-plot (sample-gamma 1000 :shape 1 :rate 2) | |
:title "Gamma Boxplot" | |
:legend true) | |
(add-box-plot (sample-gamma 1000 :shape 2 :rate 2)) | |
(add-box-plot (sample-gamma 1000 :shape 3 :rate 2)) | |
(add-box-plot (sample-gamma 1000 :shape 5 :rate 1)) | |
(add-box-plot (sample-gamma 1000 :shape 9 :rate 0.5)) | |
clear-background | |
view | |
(save "/tmp/gamma_box_plot.png")) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment