From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andreas Leha Subject: Re: org tables into R? Date: Fri, 02 Jan 2015 20:13:11 +0000 Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:39252) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Y78bB-0000JS-T1 for emacs-orgmode@gnu.org; Fri, 02 Jan 2015 15:13:30 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Y78b6-0005VF-RI for emacs-orgmode@gnu.org; Fri, 02 Jan 2015 15:13:29 -0500 Received: from plane.gmane.org ([80.91.229.3]:39355) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Y78b6-0005V4-L3 for emacs-orgmode@gnu.org; Fri, 02 Jan 2015 15:13:24 -0500 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1Y78b4-000845-Tt for emacs-orgmode@gnu.org; Fri, 02 Jan 2015 21:13:22 +0100 Received: from p5b0ef051.dip0.t-ipconnect.de ([91.14.240.81]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 02 Jan 2015 21:13:22 +0100 Received: from andreas.leha by p5b0ef051.dip0.t-ipconnect.de with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 02 Jan 2015 21:13:22 +0100 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: emacs-orgmode@gnu.org Hi Michael, Michael Gauland writes: > I want to use an R block to manipulate data from an org table, but I'm not > getting what I expect. > > If I define a table like this: > > #+NAME: data > | A | B | C | > > |-----+-----+----| > | 115 | 76 | 60 | > | 124 | 78 | 55 | > | 118 | 73 | 65 | > | 114 | 75 | 61 | > | 108 | 74 | 82 | > > and pass it into R like this: > > #+BEGIN_SRC R :results output :exports both :session :var data.table=data > names(data.table) > head(data.table) > #+END_SRC > > I expect to get a table with three columns ("A", "B", and C"), but instead I > seem to get a single column named "A.B.C": > > #+RESULTS: > : [1] "A.B.C" > : A.B.C > : 1 115 76 60 > : 2 124 78 55 > : 3 118 73 65 > : 4 114 75 61 > : 5 108 74 82 > > > What am I doing wrong? I believe, that this is a bug that has been reported already [1] and is still open. Regards, Andreas [1] http://news.gmane.org/find-root.php?message_id=olulhmmtei5.fsf%40med.uni%2dgoettingen.de