Hi Eric,
I'm trying to specify the column names of the table.
#+name: input
| title | baz |
|-------+-----|
| obs1 | foo |
| obs2 | bar |
But both versions (with symbols or strings) just do return the plain input
table.
#+name: R-echo-colnames-list
#+begin_src R :var data=input :exports results :colnames '(Rev Author)
data
#+end_src
#+name: R-echo-colnames-qlist
#+begin_src R :var data=input :exports results :colnames '("Rev" "Author")
data
#+end_src
Am I doing something wrong?
Best regards,
Seb
--
Sebastien Vauban