Skip to content

Instantly share code, notes, and snippets.

@liebke
Created April 20, 2009 19:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save liebke/98678 to your computer and use it in GitHub Desktop.
Save liebke/98678 to your computer and use it in GitHub Desktop.
(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