When I run follow code, it just work:

       #+begin_comment
       
       #+BEGIN_SRC R :results value verbatim drawer
       data <- list(a="[[./test1.org]]",b="[[./test2.org]]",c="[[./test3.org]]")
       c(data$a,data$b,data$c)
       #+END_SRC
       
       #+RESULTS:
       :RESULTS:
       [[./test1.org]]
       [[./test2.org]]
       [[./test3.org]]
       :END:
       


but when I add a #+PROPERTY, it show error like below, how to deal with
it ?  thanks ...

      #+PROPERTY: header-args:R :colnames yes :rownames no :exports both
      #+BEGIN_SRC R :results value verbatim drawer
      data <- list(a="[[./test1.org]]",b="[[./test2.org]]",c="[[./test3.org]]")
      c(data$a,data$b,data$c)
      #+END_SRC


      executing R code block...
      Wrote /tmp/babel-1984743i/ob-input-198472lB
      org-babel-R-evaluate-external-process: Wrong type argument: listp, "x
      [[./test1.org]]
      [[./test2.org]]
      [[./test3.org]]
      "

Reply via email to