From mboxrd@z Thu Jan 1 00:00:00 1970 From: Eric Schulte Subject: Re: using gnuplot's "splot" and "every" commands on org-mode table data Date: Wed, 08 May 2013 08:46:39 -0400 Message-ID: <87sj1xocz7.fsf@gmail.com> References: <87k3ncxeqt.fsf@gmail.com> <871u9isl4x.fsf@gmail.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([208.118.235.92]:44247) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Ua3m9-0005XZ-DK for emacs-orgmode@gnu.org; Wed, 08 May 2013 08:47:21 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Ua3m5-0000bL-2E for emacs-orgmode@gnu.org; Wed, 08 May 2013 08:47:17 -0400 Received: from mail-vc0-f169.google.com ([209.85.220.169]:45161) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Ua3m4-0000bE-Tt for emacs-orgmode@gnu.org; Wed, 08 May 2013 08:47:12 -0400 Received: by mail-vc0-f169.google.com with SMTP id gd11so1612776vcb.28 for ; Wed, 08 May 2013 05:47:12 -0700 (PDT) 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: Paul Stansell Cc: emacs-orgmode@gnu.org --=-=-= Content-Type: text/plain Paul Stansell writes: > Hi Eric, > > My view is that the removal of '""'s will always be preferable for > gnuplot as it uses what it calls datablocks which are delimited by > blank lines (see, for example, > http://gnuplot.sourceforge.net/docs_4.2/node121.html and > http://gnuplot.sourceforge.net/docs_4.2/node61.html). > > Paul Hi Paul, I think examples like the following may be more common than data blocks. --=-=-= Content-Type: text/x-org Content-Disposition: inline; filename=gnuplot.org #+name: data | 1 | 2 | | 2 | 4 | | 3 | 8 | | | 16 | | | | | 6 | 16 | | 7 | 8 | | | 4 | | 9 | 2 | #+begin_src gnuplot :var data=data :results silent plot data u 0:1, '' u 0:2 #+end_src --=-=-= Content-Type: text/plain Replacing ""s with blank space in the following breaks the resulting plot. Cheers, -- Eric Schulte http://cs.unm.edu/~eschulte --=-=-=--