emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Orgmode] org-babel and gnuplot


From: Nick Parker
Subject: [Orgmode] org-babel and gnuplot
Date: Tue, 7 Sep 2010 20:29:00 -0500

Hello,

I am attempting to generate a simple chart from gnuplot using the source of an org-table.  When I execute the gnuplot src block I get the message "Source block produced no output".  Does anyone have any suggestions as to what might be the cause?  I have included a sample of what I am trying to run:

#+tblname: sessions
| Date       |  Time | Distance |
|------------+-------+----------|
| 09/02/2010 | 15:13 |      2.5 |
| 09/01/2010 | 14:00 |      2.4 |

#+begin_src gnuplot :var data="">
  :file org-running.png :exports both
  set title "Running Stats"
  set auto x
  set style data histogram
  set style fill solid border -1
  set boxwidth .9
  set xlabel "Date"
  set ylabel "Time"
  plot "$data" using 1:2:3 notitle
#+end_src

Nick Parker
www.developernotes.com

reply via email to

[Prev in Thread] Current Thread [Next in Thread]