From mboxrd@z Thu Jan 1 00:00:00 1970 From: Paul Stansell Subject: Re: using gnuplot's "splot" and "every" commands on org-mode table data Date: Mon, 23 Sep 2013 14:54:37 +0000 (UTC) Message-ID: References: <87k3ncxeqt.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:51062) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VO7XZ-0003yR-06 for emacs-orgmode@gnu.org; Mon, 23 Sep 2013 10:55:16 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VO7XQ-0005f2-VP for emacs-orgmode@gnu.org; Mon, 23 Sep 2013 10:55:08 -0400 Received: from plane.gmane.org ([80.91.229.3]:38543) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VO7XQ-0005ey-ON for emacs-orgmode@gnu.org; Mon, 23 Sep 2013 10:55:00 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1VO7XO-0006XZ-GY for emacs-orgmode@gnu.org; Mon, 23 Sep 2013 16:54:58 +0200 Received: from 212.20.232.122 ([212.20.232.122]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 23 Sep 2013 16:54:58 +0200 Received: from paulstansell by 212.20.232.122 with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 23 Sep 2013 16:54:58 +0200 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 Eric, There appears to be a slight bug in the way gnuplot handles blocked data with missing entries. An example is provided in the org script at then end of this note. In the code block gnuplot_1 the use of ':missing "?"' seems to cause the exported data file to lack the blanks lines that are essential for the plot. The plot from this code block is incorrect. In gnuplot_2 ':missing' is not used, but instead 'set datafile missing "?"' is set explicitly in the gnuplot code block. The plot from this code block is correct. Surely gnuplot_1 should produce exactly the same plot as gnuplot_2. Kind regards, Paul Exported data file does not include blank lines. #+name: gnuplot_1 #+begin_src gnuplot :var d=block_data_missing :missing "?" :results silent set ticslevel 0 splot d index 0 u 1:2:3 w lp pt 6 ps 5, d index 1 u 1:2:3 w lp pt 6 ps 5 #+end_src Exported data file includes blank lines. #+name: gnuplot_2 #+begin_src gnuplot :var d=block_data_missing :results silent set datafile missing "?" set ticslevel 0 splot d index 0 u 1:2:3 w lp pt 6 ps 5, d index 1 u 1:2:3 w lp pt 6 ps 5 #+end_src #+name: block_data_missing | 1 | 1 | 2 | | 1 | 2 | 5 | | 1 | 3 | 10 | | | | | | 2 | 1 | 5 | | 2 | 2 | 10 | | 2 | 3 | 13 | | | | | | 3 | 1 | 10 | | 3 | 2 | ? | | 3 | 3 | 18 | | | | | | | | | | 1 | 1 | 12 | | 1 | 2 | 15 | | 1 | 3 | 20 | | | | | | 2 | 1 | 15 | | 2 | 2 | 18 | | 2 | 3 | 23 | | | | | | 3 | 1 | ? | | 3 | 2 | 23 | | 3 | 3 | 28 |