Re: [O] Combine tables which are results from calculations?

2015-11-05 Thread Rainer M Krug
Rick Frankel writes: > On Wed, Nov 04, 2015 at 10:03:48AM +0100, Rainer M Krug wrote: >> Rick Frankel writes: >> >> > On Tue, Nov 03, 2015 at 02:18:05PM +0100, Rainer M Krug wrote: >> >> Hi >> >> >> >> Considering the following example: >> > >> > here's a way to do it in ruby. There is probably

Re: [O] Combine tables which are results from calculations?

2015-11-04 Thread Rick Frankel
On Wed, Nov 04, 2015 at 10:03:48AM +0100, Rainer M Krug wrote: > Rick Frankel writes: > > > On Tue, Nov 03, 2015 at 02:18:05PM +0100, Rainer M Krug wrote: > >> Hi > >> > >> Considering the following example: > > > > here's a way to do it in ruby. There is probably a way in {emacs,cl}-lisp, > > bu

[O] Combine tables which are results from calculations?

2015-11-03 Thread Rainer M Krug
Hi Considering the following example: --8<---cut here---start->8--- #+NAME t1 #+begin_src R :colnames yes data.frame(a = 1:3) #+end_src #+RESULTS: | a | |---| | 1 | | 2 | | 3 | #+NAME t2 #+begin_src R :colnames yes data.frame(b = 1:10) #+end_src #+RESULTS: |