0
0
Fork 1
mirror of https://git.savannah.gnu.org/git/emacs/org-mode.git synced 2024-08-25 22:02:52 +00:00

Added another multilingual example. One issue is that spaces in the string cause vector output.

This commit is contained in:
Dan Davison 2009-06-03 12:33:58 -04:00
parent 02b265b2e3
commit 8ac2a7daa6

View file

@ -114,7 +114,7 @@ table, allowing the test suite to be run be evaluation of the table
and the results to be collected in the same table. and the results to be collected in the same table.
* Tasks [22/36] * Tasks [22/37]
** TODO Create objects in top level (global) environment in R? [0/5] ** TODO Create objects in top level (global) environment in R? [0/5]
*** initial requirement statement [DED] *** initial requirement statement [DED]
@ -527,6 +527,25 @@ tabel
Another example is in the [[*operations%20in%20on%20tables][grades example]]. Another example is in the [[*operations%20in%20on%20tables][grades example]].
** PROPOSED Are we happy with current behaviour regarding vector/scalar output?
This simple example of multilingual chaining produces vector output if
there are spaces in the message and scalar otherwise.
#+begin_src R :var msg=msg-from-python
paste(msg, "und_R", sep="_")
#+end_src
#+srcname: msg-from-python
#+begin_src python :var msg=msg-from-elisp
msg + "_y_python"
#+end_src
#+srcname: msg-from-elisp
#+begin_src emacs-lisp :var msg="org-babel_speaks"
(concat msg "_elisp")
#+end_src
** PROPOSED conversion between org-babel and noweb (e.g. .Rnw) format ** PROPOSED conversion between org-babel and noweb (e.g. .Rnw) format
I haven't thought about this properly. Just noting it down. What I haven't thought about this properly. Just noting it down. What
Sweave uses is called "R noweb" (.Rnw). Sweave uses is called "R noweb" (.Rnw).