From mboxrd@z Thu Jan 1 00:00:00 1970 From: Marvin Doyley Subject: org-bable and gnuplot Date: Thu, 1 Sep 2011 12:59:52 -0400 Message-ID: Mime-Version: 1.0 Content-Type: multipart/alternative; boundary=000e0ce0db5e6a692904abe42c8d Return-path: Received: from eggs.gnu.org ([140.186.70.92]:48587) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QzAcO-0004wF-BV for emacs-orgmode@gnu.org; Thu, 01 Sep 2011 12:59:57 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QzAcN-0000nG-3m for emacs-orgmode@gnu.org; Thu, 01 Sep 2011 12:59:56 -0400 Received: from mail-fx0-f41.google.com ([209.85.161.41]:39720) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QzAcM-0000n8-Ur for emacs-orgmode@gnu.org; Thu, 01 Sep 2011 12:59:55 -0400 Received: by fxg9 with SMTP id 9so1014819fxg.0 for ; Thu, 01 Sep 2011 09:59:53 -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: emacs-orgmode@gnu.org --000e0ce0db5e6a692904abe42c8d Content-Type: text/plain; charset=ISO-8859-1 Hi there, I am planning to use gnuplot to plot some data that I have in org table. Everything is set-up correctly and gnuplot is installed my mac. Unfortunately, when I run the following org file I get a zero byte file -- everything seems to run ok, except nothing is written to the output file. Does anybody know what I am doing wrong ? #+tblname: testing | x | y | |---+----| | 1 | 2 | | 2 | 4 | | 3 | 6 | | 4 | 8 | | 5 | 10 | | 6 | 12 | | 7 | 14 | | 8 | 16 | #+begin_src gnuplot :var data=testing :file output.eps :exports both set title "test" set auto x set style data histogram set style fill solid border -1 set boxwidth 0.9 plot data using 1:2 #+end_src #+results: [[file:output.eps]] cheers M --000e0ce0db5e6a692904abe42c8d Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Hi there,

I am planning to use gnuplot to plot some data that I have= in org table. Everything is set-up correctly and gnuplot is installed my m= ac. Unfortunately, when I run the following org file I get a zero byte file= -- everything seems to run ok, except nothing is written to the output fil= e. Does anybody know what I am doing wrong ?

#+tblname: testing
| x |=A0 y |
|---+----|
| 1 |=A0 2 |
| 2= |=A0 4 |
| 3 |=A0 6 |
| 4 |=A0 8 |
| 5 | 10 |
| 6 | 12 |
| = 7 | 14 |
| 8 | 16 |
#+begin_src gnuplot :var data=3Dtesting :file out= put.eps :exports both
set title "test"
set auto x
set style data histogram
set= style fill solid border -1
set boxwidth 0.9
plot data using 1:2
= #+end_src

#+results:
[[file:output.eps]]
cheers
M

--000e0ce0db5e6a692904abe42c8d--