Dan
> The Worg pages is the current documentation, but please just ask when
> you have any problems -- include the string [babel] in the subject line
> so people can filter it out.
>
> One suggestion: are you looking at the HTML version of the tutorial? If
> so, how about getting hold of the sourc
Graham Smith writes:
> Dan
>
>> Here's a version of your example that works.
>
> Thanks, this all works for me now.
>
> In addition to the tutorial on the worg, is there a manual somewhere,
> because the var option isn't mentioned in the tutorial.
>
> And judging by the trouble I am having, I'm
Dan
> Here's a version of your example that works.
Thanks, this all works for me now.
In addition to the tutorial on the worg, is there a manual somewhere,
because the var option isn't mentioned in the tutorial.
And judging by the trouble I am having, I'm going to need a lot more
help to get t
Graham Smith 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 |
>
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
#+res