From mboxrd@z Thu Jan 1 00:00:00 1970 From: Graham Smith Subject: Re: Re: Babel - simple getting started problem Date: Mon, 7 Dec 2009 14:58:35 +0000 Message-ID: <2c75873c0912070658u20efb785xfb678ef2976dd438@mail.gmail.com> References: <2c75873c0912062320m20284efawb5b4414fa5593691@mail.gmail.com> <87ws0zyump.fsf@mundaneum.com> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NHf2v-0001zQ-RH for emacs-orgmode@gnu.org; Mon, 07 Dec 2009 09:58:41 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1NHf2r-0001tF-0b for emacs-orgmode@gnu.org; Mon, 07 Dec 2009 09:58:41 -0500 Received: from [199.232.76.173] (port=54688 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NHf2q-0001t5-Oz for emacs-orgmode@gnu.org; Mon, 07 Dec 2009 09:58:36 -0500 Received: from mail-fx0-f213.google.com ([209.85.220.213]:36586) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1NHf2q-0006Sk-NZ for emacs-orgmode@gnu.org; Mon, 07 Dec 2009 09:58:36 -0500 Received: by fxm5 with SMTP id 5so4662806fxm.8 for ; Mon, 07 Dec 2009 06:58:35 -0800 (PST) In-Reply-To: <87ws0zyump.fsf@mundaneum.com> List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org Seb, I am obviously not following this at all. I am assuming you need to keep all the code under the same heading so OrgMode knows which table is being referred to. But if I put the cursor in the table and use C-u C-c C-c I get a message in the mini buffer, that the formulas are being re-applied, but an error in the table. Graham * Example 1: data summaries using R #+srcname: tbl-example-data() #+begin_src R runif(n=5, min=0, max=1) #+end_src #+resname: tbl-example-data | 0.142434993525967 | | 0.636120659532025 | | 0.167309222277254 | | 0.96337740519084 | | 0.276034632697701 | #+srcname: R-mean(x) #+begin_src R mean(x) #+end_src #+tblname: summaries | mean | |--------| | #ERROR | #+TBLFM: @2$1='(sbe "R-mean" (x "generate-data()"))