#+Title: Box-Plots with Gnuplot #+Options: ^:nil #+name: sample | x | box_min | whisker_min | whisker_high | box_high | |---+---------+-------------+--------------+----------| | 1 | 2 | 0 | 6 | 4 | | 2 | 3 | 1 | 7 | 5 | | 3 | 4 | 2 | 8 | 6 | | 4 | 5 | 3 | 9 | 7 | | 5 | 6 | 4 | 10 | 8 | | 6 | 7 | 5 | 11 | 9 | #+begin_src gnuplot :var data=sample :results silent set xrange [0:7] plot data using 1:2:3:4:5 with candlesticks #+end_src