When I'm passing arguments to a #+begin_src block, is there a way to compute them dynamically?

Specifically, I want to set the :height attribute to something that depends on some variables in my R code, like in the following mockup:

#+begin_src R
x <- 5
#+end_src

#+begin_src R :results graphics :file foo.svg :height (3*getvar('x'))
...draw picture here
#+end_src

where that getvar() thing, and computations therewith, is maybe my wishful thinking.

link|improve this question

68% accept rate
feedback

1 Answer

I do not know how to use org-mode to do that, but this is already a feature in the knitr package (an alternative to Sweave), so if you do not mind the Sweave syntax, you can use:

<<>>=
opts_knit$set(eval.opts = 'fig.height') # option fig.height should be evaluated
x <- 5
<<foo, dev=svg, fig.height=3*x>>=
# draw plots here
@

More on org-mode in knitr: http://yihui.name/knitr/demo/org/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.