From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Christopher W. Ryan" Subject: Re: how do scientists use org mode? Date: Thu, 02 Feb 2012 12:19:41 -0500 Message-ID: <4F2AC5AD.5090109@binghamton.edu> References: <4F26D54C.8000608@binghamton.edu> <87k449j7f0.fsf@tajo.ucsd.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([140.186.70.92]:54645) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Rt0K9-0003E6-RK for emacs-orgmode@gnu.org; Thu, 02 Feb 2012 12:19:57 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Rt0K5-0001Ex-LL for emacs-orgmode@gnu.org; Thu, 02 Feb 2012 12:19:53 -0500 Received: from hrndva-omtalb.mail.rr.com ([71.74.56.123]:49074) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Rt0K5-0001Ei-HC for emacs-orgmode@gnu.org; Thu, 02 Feb 2012 12:19:49 -0500 In-Reply-To: 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 Just tried a similar thing on my computer at work: WinXP, emacs-22.3.1, org-mode 7.7. I tried both R and python. With this in my .emacs file: ;; active Babel languages (org-babel-do-load-languages 'org-babel-load-languages '((R . t) (python . t) )) Here are the contents of the org file I am playing with: #+begin_src R rnorm(10) #+end_src #+begin_src python print "Hello, World!" #+end_src C-c C-c the first block results in a message like this: Evaluate this R code block on your system? (yes or no) Answering yes yields: No org-babel-execute function for R! Trying the same in the python block yields the same results, except with "python" substituted for "R" in all the messages. Any suggestions where I am going wrong? Thanks. --Chris Ryan