Re: [Orgmode] [babel] :noweb and R

2009-10-19 Thread Eric Schulte
"Thomas S. Dye" writes: > Hi Eric, > > The :noweb argument works for me with python, but not with R. [...] > This throws an error in the 2nd block "funcall: Symbol's function definition > is void: R-mode": Hi Tom, The problem here is that `R-mode' is not available on your system, installing

[Orgmode] [babel] :noweb and R

2009-10-19 Thread Thomas S. Dye
Hi Eric, The :noweb argument works for me with python, but not with R. This works fine: #+srcname: noweb-example #+begin_src python a = 28 a #+end_src #+resname: noweb-example : 28 #+begin_src python :noweb # <> a + 4 #+end_src #+resname: : 32 This throws an error in the 2nd block "f