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.