From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ista Zahn Subject: Re: org-babel R ascii results: unable to export table Date: Thu, 30 Apr 2015 11:45:20 -0400 Message-ID: References: <20150430133238.3452b85d@caprica> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:34757) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Ynqem-0000Gr-HY for emacs-orgmode@gnu.org; Thu, 30 Apr 2015 11:45:50 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Ynqek-0007Ep-MO for emacs-orgmode@gnu.org; Thu, 30 Apr 2015 11:45:44 -0400 Received: from mail-oi0-x236.google.com ([2607:f8b0:4003:c06::236]:34571) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Ynqek-0007Ef-Em for emacs-orgmode@gnu.org; Thu, 30 Apr 2015 11:45:42 -0400 Received: by oiko83 with SMTP id o83so51137220oik.1 for ; Thu, 30 Apr 2015 08:45:41 -0700 (PDT) In-Reply-To: <20150430133238.3452b85d@caprica> 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: =?UTF-8?Q?Marco_Barb=C3=A0ra?= Cc: emacs-orgmode Mailinglist Hi Marco, Here is a fairly minimal example to get you started: #### Begin Example #### #+PROPERTY: header-args:R :session *R* :results output drawer :exports both #+BEGIN_SRC R library(ascii) options(asciiType=3D"org") #+END_SRC #+BEGIN_SRC R ascii(mtcars[1:5, 1:5]) #+END_SRC #+BEGIN_SRC R ascii(summary(lm(hp ~ wt, data =3D mtcars))) #+END_SRC ### End Example First execute the code blocks with 'M-x org-babel-execute-buffer' then export. For more control I would refer to the manual section at http://orgmode.org/manual/Working-With-Source-Code.html#Working-With-Source= -Code Best, Ista On Thu, Apr 30, 2015 at 7:32 AM, Marco Barb=C3=A0ra wrot= e: > Dear org-mode community, > > First, I want to apologize for subscribing mainly because I need help. > > I recently started using org-mode as a tool for reproducible research > (trying to do R-based literate programming). > > What I'm trying to is explained in this example file: > http://orgmode.org/worg/org-contrib/babel/examples/ascii.org > which I downloaded trying to understand how to export R output produced > with the R 'ascii' package. > > Running this example, after adding ":exports results" to > "ascii-example3" block, _on the first attempt_, the output was exported > as an odt table (i was happy, this is my desired outcome). But > afterwards, any subsequent attempts to export the same block resulted in > a "verbatim" block, which is the same problem I was trying to solve. > > I tried to export as a latex buffer too, and even there i got a verbatim > environment. > > I don't think it is bug, it is probably that I still don't understand > org-babel well. > > Sorry not to provide any other sample code, but I wouldn't know where > to begin. > > Any advice would be very appreciated. > > Thank you very much > > Marco Barbara > > >