From mboxrd@z Thu Jan 1 00:00:00 1970 From: John Tait Subject: Beginning R plot export Date: Wed, 11 May 2011 00:28:03 +0100 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Return-path: Received: from eggs.gnu.org ([140.186.70.92]:52463) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QJwLW-0005ps-Mt for emacs-orgmode@gnu.org; Tue, 10 May 2011 19:28:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QJwLV-0000Rr-Rx for emacs-orgmode@gnu.org; Tue, 10 May 2011 19:28:06 -0400 Received: from mail-ew0-f41.google.com ([209.85.215.41]:32783) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QJwLV-0000RV-NU for emacs-orgmode@gnu.org; Tue, 10 May 2011 19:28:05 -0400 Received: by ewy9 with SMTP id 9so2251384ewy.0 for ; Tue, 10 May 2011 16:28:04 -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 Hi Do I need to do extra configuration to get R plot output in LaTeX exports? Using the simplest code block: #+SRCNAME: graph #+BEGIN_SRC R :exports both x=c(1,2) y=c(2,4) plot(x,y) x #+END_SRC The numbers "1 2" appear in the LaTeX output, indicating that R is running. The plot doesn't appear though. What am I missing? Thanks John