Re: [O] babel R: should/does order of parameters matter?

2011-03-29 Thread Myles English
Eric, On 23 March 2011 03:03, Eric Schulte schulte.e...@gmail.com wrote: I believe the problem here is that your :var header argument syntax is wrong.  A :var header argument must have a name, and equals sign, and an assignment for the variable, e.g. #+begin_src sh :var name=eric  echo

Re: [O] babel R: should/does order of parameters matter?

2011-03-29 Thread Eric Schulte
#+TBLNAME: data | x | parameter | value | |---+---+---| | 0 | heat |30 | | 1 | heat |30 | #+source: func5 #+begin_src R :var name=data :var a=one :colnames yes names(name) #+end_src executing directly works as expected: #+results: func5 | x |

Re: [O] babel R: should/does order of parameters matter?

2011-03-22 Thread Eric Schulte
Hi Myles, I believe the problem here is that your :var header argument syntax is wrong. A :var header argument must have a name, and equals sign, and an assignment for the variable, e.g. #+begin_src sh :var name=eric echo $name #+end_src #+results: : eric Please see the online manual for

[O] babel R: should/does order of parameters matter?

2011-03-20 Thread Myles English
Hello, First of all thanks very much for all the very well explained help given in previous threads I have started. Now, I have found different results arise from a difference in position of parameters (I'm using commit c01c2ad Fri Mar 18, R version 2.12.20, Feb 25): #+TBLNAME: data | x |