From mboxrd@z Thu Jan 1 00:00:00 1970 From: Karl Voit Subject: Generating boxplot (candlestick) diagrams (babel or org-plot) Date: Sun, 8 Jan 2012 16:44:59 +0100 Message-ID: <2012-01-08T16-41-37@devnull.Karl-Voit.at> Reply-To: news1142@Karl-Voit.at Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Return-path: Received: from eggs.gnu.org ([140.186.70.92]:50138) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Rjuvs-0007wW-N5 for emacs-orgmode@gnu.org; Sun, 08 Jan 2012 10:45:17 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Rjuvr-0004HJ-FO for emacs-orgmode@gnu.org; Sun, 08 Jan 2012 10:45:16 -0500 Received: from lo.gmane.org ([80.91.229.12]:58761) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Rjuvr-0004HB-90 for emacs-orgmode@gnu.org; Sun, 08 Jan 2012 10:45:15 -0500 Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1Rjuvp-0007Du-FN for emacs-orgmode@gnu.org; Sun, 08 Jan 2012 16:45:13 +0100 Received: from mail.michael-prokop.at ([88.198.6.110]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sun, 08 Jan 2012 16:45:13 +0100 Received: from news1142 by mail.michael-prokop.at with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sun, 08 Jan 2012 16:45:13 +0100 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org Hi! I'm new to babel/gnuplot/org-plot and want to generate classic Boxplot[1] diagrams. My tests failed so far: #+TBLNAME: mydata #+PLOT: title:"Boxplots of mydata" with:candlesticks | A | B | |---+---| | 5 | 5 | | 5 | 6 | | 4 | 5 | | 5 | 6 | | 2 | 4 | | 2 | 5 | ... with «org-plot/gnuplot» results in: #+begin_verse gnuplot-mode 0.6.0 (gnuplot 4.4) -- report bugs with "C-c C-u" Starting gnuplot plotting program...Done #+end_verse ... with nothing else. #+begin_src gnuplot :var data=mydata :file output.png set title "Plot Test" plot data using 1:2 with candlestick #+end_src ... results in empty output.png file. What is the problem here? At least the second method should end up in an error message or a file with content I guess. 1. http://en.wikipedia.org/wiki/Boxplot -- Karl Voit