emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
From: Dan Davison <davison@stats.ox.ac.uk>
To: Graham Smith <myotisone@gmail.com>
Cc: emacs-orgmode@gnu.org
Subject: Re: Babel - simple getting started problem
Date: Mon, 07 Dec 2009 12:12:15 -0500	[thread overview]
Message-ID: <87fx7m674g.fsf@stats.ox.ac.uk> (raw)
In-Reply-To: <2c75873c0912062320m20284efawb5b4414fa5593691@mail.gmail.com> (Graham Smith's message of "Mon, 7 Dec 2009 07:20:19 +0000")

Graham Smith <myotisone@gmail.com> writes:

> I know I must be missing the obvious here, but why can't I get babel+R
> to calculate a mean. See below


>
> Many thanks,
>
> Graham
>
> * test
> #+srcname:trial
> #+begin_src R
> x<-c(4,5,6,7,8,9)
> #+end_src
>
> #+resname: trial
> | 4 |
> | 5 |
> | 6 |
> | 7 |
> | 8 |
> | 9 |
>
>
> * meantest
> #+begin_src R
> mean(trial)
> #+end_src

Hi Graham,

Here's a version of your example that works.

Dan


* test
#+srcname:trial
#+begin_src R
c(4,5,6,7,8,9)
#+end_src

Note I deleted the 'x <-' there. Unless you're using :session there's
no point assigning to a variable which is not used.

#+results: trial
| 4 |
| 5 |
| 6 |
| 7 |
| 8 |
| 9 |

* meantest
#+srcname: calcmean(data=trial)
#+begin_src R
mean(data)
#+end_src

#+results: calcmean
: 6.5

or alternative syntax

#+begin_src R :var data=trial
mean(data)
#+end_src

#+results:
: 6.5



>
> #+resname:
>
> error in buffer "source block produced no output"
>
> * meantest2
> #+begin_src R
> mean(x)
> #+end_src
>
> #+resname:
>
> error in buffer "source block produced no output"
>
>
> _______________________________________________
> Emacs-orgmode mailing list
> Please use `Reply All' to send replies to the list.
> Emacs-orgmode@gnu.org
> http://lists.gnu.org/mailman/listinfo/emacs-orgmode

  parent reply	other threads:[~2009-12-07 17:12 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-12-07  7:20 Babel - simple getting started problem Graham Smith
2009-12-07  9:57 ` Sébastien Vauban
2009-12-07 10:12   ` Graham Smith
2009-12-07 14:58   ` Graham Smith
2009-12-07 17:12 ` Dan Davison [this message]
2009-12-07 17:36   ` Graham Smith
2009-12-07 20:13     ` Dan Davison
2009-12-07 20:19       ` Graham Smith
2009-12-08  8:39   ` Sébastien Vauban
2009-12-18 18:52     ` Eric Schulte

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.orgmode.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87fx7m674g.fsf@stats.ox.ac.uk \
    --to=davison@stats.ox.ac.uk \
    --cc=emacs-orgmode@gnu.org \
    --cc=myotisone@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).