From mboxrd@z Thu Jan 1 00:00:00 1970 From: Rainer M Krug Subject: Combine tables which are results from calculations? Date: Tue, 03 Nov 2015 14:18:05 +0100 Message-ID: Mime-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha256; protocol="application/pgp-signature" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:57333) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZtbTe-0005YL-7G for emacs-orgmode@gnu.org; Tue, 03 Nov 2015 08:18:24 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZtbTa-0007N6-6t for emacs-orgmode@gnu.org; Tue, 03 Nov 2015 08:18:18 -0500 Received: from mail-wi0-f181.google.com ([209.85.212.181]:38321) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZtbTa-0007N2-0Z for emacs-orgmode@gnu.org; Tue, 03 Nov 2015 08:18:14 -0500 Received: by wicll6 with SMTP id ll6so11265304wic.1 for ; Tue, 03 Nov 2015 05:18:13 -0800 (PST) Received: from Rainers-MacBook-Pro.local ([2a01:e35:8baa:b070:5959:ef19:a0b:e49b]) by smtp.gmail.com with ESMTPSA id q204sm23322996wmg.4.2015.11.03.05.18.11 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 03 Nov 2015 05:18:11 -0800 (PST) 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 --=-=-= Content-Type: text/plain Content-Transfer-Encoding: quoted-printable Hi Considering the following example: =2D-8<---------------cut here---------------start------------->8--- #+NAME t1 #+begin_src R :colnames yes data.frame(a =3D 1:3) #+end_src #+RESULTS: | a | |---| | 1 | | 2 | | 3 | #+NAME t2 #+begin_src R :colnames yes data.frame(b =3D 1:10) #+end_src #+RESULTS: | b | |----| | 1 | | 2 | | 3 | | 4 | | 5 | | 6 | | 7 | | 8 | | 9 | | 10 | #+NAME t3 #+begin_src R :colnames yes data.frame(c =3D 1:7) #+end_src #+RESULTS: | c | |---| | 1 | | 2 | | 3 | | 4 | | 5 | | 6 | | 7 | What I would like to have is: | a | b | c | |----|----|----| | 1 | 1 | 1 | | 2 | 2 | 2 | | 3 | 3 | 3 | | | 4 | 4 | | | 5 | 5 | | | 6 | 6 | | | 7 | 7 | | | 8 | | | | 9 | | | | 10 | | =2D-8<---------------cut here---------------end--------------->8--- How can I combine t1, t2 and t3 column wise? Thanks, Rainer =2D-=20 Rainer M. Krug, PhD (Conservation Ecology, SUN), MSc (Conservation Biology,= UCT), Dipl. Phys. (Germany) Centre of Excellence for Invasion Biology Stellenbosch University South Africa Tel : +33 - (0)9 53 10 27 44 Cell: +33 - (0)6 85 62 59 98 Fax : +33 - (0)9 58 10 27 44 Fax (D): +49 - (0)3 21 21 25 22 44 email: Rainer@krugs.de Skype: RMkrug PGP: 0x0F52F982 --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQEcBAEBCAAGBQJWOLQRAAoJENvXNx4PUvmCZUIIALoEBnOe9sDAh2xfmg7t7FW9 2VefIRjtwPjBDL+zdjrO8+kBwRPZgBe7e7gDJkhesHli3jWt7Sg/AqDn4rI2D8RC lXyc2Gw8Sk33W0bWx3OS64mGcHn7OhXrWJEGSrIvKwgVU5VkJbGfABZ1jAXjwXQY zXCmS6wbO0vikiVBdh04+Dsr2SV6NTReHrfEpmD3i5VskSvm6uKqDaaYbXbio1Ya Pn0Ti8ZfCq1RKH3Bi7EbLWRuGzYizVOOOerM7cFbiGJk3uvzUBsQeWlDQ+1uQHEw P5AyyqfqjaHwnm+NszM38FBULgd4N45veHGbRZiXhEg52upL8VdC4qwCrbHuhtE= =LqXm -----END PGP SIGNATURE----- --=-=-=--