[O] Calling org babel to each row in a table

2013-06-30 Thread Joe Bogner
I often need to transform a table or list of values into a block of text. For example, if I have a list of 4 files that I want to generate a SQL script for. After hunting around, this is the best I came up with: #+name: table | File | | a| | b| | c| | d| #+name: template

Re: [O] formatting org-babel output

2013-05-22 Thread Joe Bogner
I'm using org-mode for presentation of the R results. Thanks again Joe On Wed, May 22, 2013 at 9:12 AM, Eric Schulte schulte.e...@gmail.com wrote: Joe Bogner joebog...@gmail.com writes: I am using org-mode and babel with R for reproducible research. I would like certain numbers in the output

[O] Org-babel R exporting multiple tables

2013-05-22 Thread Joe Bogner
I have a list of data frames that I would like to output. The number of frames may vary Is there a way to export multiple tables formatted? These are the three options I came up with. None of them work very well: Option #3 works the best, but it will append each time it's run in the doc, so I

Re: [O] Org-babel R exporting multiple tables

2013-05-22 Thread Joe Bogner
Figured it out. Option #2 works with ob-org as long as the defaults are set to output the results (setq org-babel-default-header-args:org '((:results . raw) (:exports . results))) By default it looks like it's silent. On Wed, May 22, 2013 at 5:26 PM, Joe Bogner joebog...@gmail.com wrote: I