From mboxrd@z Thu Jan 1 00:00:00 1970 From: Feng Shu Subject: ob-R, about :results value verbatim drawer Date: Wed, 24 Sep 2014 10:43:51 +0800 Message-ID: <87a95pbuvs.fsf@news.tumashu-localhost.org> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:42212) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XWcfy-0007Qw-QA for emacs-orgmode@gnu.org; Tue, 23 Sep 2014 22:51:35 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XWcft-0005Xr-EP for emacs-orgmode@gnu.org; Tue, 23 Sep 2014 22:51:30 -0400 Received: from mail-pa0-x22b.google.com ([2607:f8b0:400e:c03::22b]:62981) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XWcft-0005V4-6n for emacs-orgmode@gnu.org; Tue, 23 Sep 2014 22:51:25 -0400 Received: by mail-pa0-f43.google.com with SMTP id kx10so7703623pab.16 for ; Tue, 23 Sep 2014 19:51:18 -0700 (PDT) Received: from news.tumashu-localhost.org ([120.4.253.247]) by mx.google.com with ESMTPSA id iu10sm13257054pbd.57.2014.09.23.19.51.16 for (version=TLSv1.2 cipher=RC4-SHA bits=128/128); Tue, 23 Sep 2014 19:51:17 -0700 (PDT) Received: from feng by news.tumashu-localhost.org with local (Exim 4.80) (envelope-from ) id 1XWcYZ-0005gj-Ds for emacs-orgmode@gnu.org; Wed, 24 Sep 2014 10:43:51 +0800 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: orgmode 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]] "