Re: [Orgmode] Babel - simple getting started problem

2009-12-07 Thread Graham Smith
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

Re: [Orgmode] Babel - simple getting started problem

2009-12-07 Thread Dan Davison
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

Re: [Orgmode] Babel - simple getting started problem

2009-12-07 Thread Graham Smith
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

Re: [Orgmode] Babel - simple getting started problem

2009-12-07 Thread Dan Davison
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 | >

[Orgmode] Babel - simple getting started problem

2009-12-06 Thread Graham Smith
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