Re: [O] org-babel R ascii results: unable to export table

2015-05-04 Thread Marco Barbàra
Hi, sorry for replying so late. Thank you very much, your answer pointed me in the right direction (I solved with :results output drawer) Marco. Il giorno Thu, 30 Apr 2015 11:45:20 -0400 Ista Zahn ha scritto: > Hi Marco, > > Here is a fairly minimal example to get you started: > > Begi

Re: [O] org-babel R ascii results: unable to export table

2015-04-30 Thread Ista Zahn
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="org") #+END_SRC #+BEGIN_SRC R ascii(mtcars[1:5, 1:5]) #+END_SRC #+BEGIN_SRC