More thoughts on scripting vs. functional approaches in org-babel
[rgr-org-mode.git] / org-babel.org
blobfeebccec870da2e9a5b9d4d6852f55517057bcba
1 #+OPTIONS:    H:3 num:nil toc:t
2 #+TITLE: org-babel --- facilitating communication between programming languages and people
3 #+SEQ_TODO:  TODO PROPOSED | DONE DEFERRED REJECTED
4 #+STARTUP: oddeven hideblocks
6 * Introduction
8 Org-Babel enables *communication* between programming languages and
9 between people.
11 Org-Babel provides:
12 - communication between programs :: Data passes seamlessly between
13      different programming languages, text, and tables.
14 - communication between people :: Data and calculations are embedded
15      in the same document as notes explanations and reports.
17 ** communication between programs
19 Org-Mode supports embedded blocks of source code (in any language)
20 inside of Org documents.  Org-Babel allows these blocks of code to be
21 executed from within Org-Mode with natural handling of their inputs
22 and outputs.
24 *** simple execution
25 with both scalar, file, and table output
28 *** reading information from tables
31 *** reading information from other source blocks (disk usage in your home directory)
33 This will work for Linux and Mac users, not so sure about shell
34 commands for windows users.
36 To run place the cursor on the =#+begin_src= line of the source block
37 labeled directory-pie and press =\C-c\C-c=.
39 #+srcname: directories
40 #+begin_src bash :results replace
41 cd ~ && du -sc * |grep -v total
42 #+end_src
44 #+resname: directories
45 |       64 | "Desktop"   |
46 | 11882808 | "Documents" |
47 |  8210024 | "Downloads" |
48 |   879800 | "Library"   |
49 |    57344 | "Movies"    |
50 |  7590248 | "Music"     |
51 |  5307664 | "Pictures"  |
52 |        0 | "Public"    |
53 |      152 | "Sites"     |
54 |        8 | "System"    |
55 |       56 | "bin"       |
56 |  3274848 | "mail"      |
57 |  5282032 | "src"       |
58 |     1264 | "tools"     |
60 #+srcname: directory-pie
61 #+begin_src R :var dirs = directories
62 pie(dirs[,1], labels = dirs[,2])
63 #+end_src
66 *** operations in/on tables
68 #+tblname: grades-table
69 | student | grade | letter |
70 |---------+-------+--------|
71 |       1 |    99 | A      |
72 |       2 |    59 | F      |
73 |       3 |    75 | C      |
74 |       4 |    15 | F      |
75 |       5 |     7 | F      |
76 |       6 |    13 | F      |
77 #+TBLFM: $2='(sbe random-score-generator)::$3='(sbe assign-grade (score $2))
79 #+srcname: assign-grade
80 #+begin_src ruby :var score=99
81 case score
82    when 0..59: "F"
83    when 60..69: "D"
84    when 70..79: "C"
85    when 80..89: "B"
86    when 90..100: "A"
87    else "Invalid Score"
88 end
89 #+end_src
91 #+srcname: random-score-generator
92 #+begin_src ruby 
93 rand(100)
94 #+end_src
96 #+srcname: show-distribution
97 #+begin_src R :var grades=grades-table
98 hist(grades[,2])
99 #+end_src
102 ** communication between people
103 Quick overview of Org-Mode's exportation abilities, with links to the
104 online Org-Mode documentation, a focus on source-code blocks, and the
105 exportation options provided by Org-Babel.
107 *** Interactive tutorial
108 This would demonstrate applicability to Reproducible Research, and
109 Literate Programming.
111 *** Tests embedded in documentation
112 org-babels own functional tests are contained in a large org-mode
113 table, allowing the test suite to be run be evaluation of the table
114 and the results to be collected in the same table.
117 * Tasks [22/37]
118 ** TODO Create objects in top level (global) environment [0/5]
119 *sessions*
121 *** initial requirement statement [DED]
122    At the moment, objects created by computations performed in the
123    code block are evaluated in the scope of the
124    code-block-function-body and therefore disappear when the code
125    block is evaluated {unless you employ some extra trickery like
126    assign('name', object, env=globalenv()) }. I think it will be
127    desirable to also allow for a style wherein objects that are
128    created in one code block persist in the R global environment and
129    can be re-used in a separate block.
131    This is what Sweave does, and while I'm not saying we have to be
132    the same as Sweave, it wouldn't be hard for us to provide the same
133    behaviour in this case; if we don't, we risk undeservedly being
134    written off as an oddity by some.
136    IOW one aspect of org-babel is that of a sort of functional
137    meta-programming language. This is crazy, in a very good
138    way. Nevertheless, wrt R I think there's going to be a lot of value
139    in providing for a working style in which the objects are stored in
140    the R session, rather than elisp/org buffer. This will be a very
141    familiar working style to lots of people.
143    There are no doubt a number of different ways of accomplishing
144    this, the simplest being a hack like adding
146 #+begin_src R
147 for(objname in ls())
148     assign(objname, get(objname), envir=globalenv())
149 #+end_src
151 to the source code block function body. (Maybe wrap it in an on.exit() call).
153 However this may deserve to be thought about more carefully, perhaps
154 with a view to having a uniform approach across languages. E.g. shell
155 code blocks have the same semantics at the moment (no persistence of
156 variables across code blocks), because the body is evaluated in a new
157 bash shell process rather than a running shell. And I guess the same
158 is true for python. However, in both these cases, you could imagine
159 implementing the alternative in which the body is evaluated in a
160 persistent interactive session. It's just that it's particularly
161 natural for R, seeing as both ESS and org-babel evaluate commands in a
162 single persistent R session.
164 *** sessions [Eric]
166 Thanks for bringing this up.  I think you are absolutely correct that we
167 should provide support for a persistent environment (maybe called a
168 *session*) in which to evaluate code blocks.  I think the current setup
169 demonstrates my personal bias for a functional style of programming
170 which is certainly not ideal in all contexts.
172 While the R function you mention does look like an elegant solution, I
173 think we should choose an implementation that would be the same across
174 all source code types.  Specifically I think we should allow the user to
175 specify an optional *session* as a header variable (when not present we
176 assume a default session for each language).  The session name could be
177 used to name a comint buffer (like the *R* buffer) in which all
178 evaluation would take place (within which variables would retain their
179 values --at least once I remove some of the functional method wrappings
180 currently in place-- ).
182 This would allow multiple environments to be used in the same buffer,
183 and once this setup was implemented we should be able to fairly easily
184 implement commands for jumping between source code blocks and the
185 related session buffers, as well as for dumping the last N commands from
186 a session into a new or existing source code block.
188 Please let me know if you foresee any problems with this proposed setup,
189 or if you think any parts might be confusing for people coming from
190 Sweave.  I'll hopefully find some time to work on this later in the
191 week.
193 *** can functional and interpreted/interactive models coexist?
195 Even though both of these use the same =*R*= buffer the value of =a=
196 is not preserved because it is assigned inside of a functional
197 wrapper.
199 #+srcname: task-R-sessions
200 #+begin_src R 
201 a <- 9
202 b <- 21
203 a + b
204 #+end_src
206 #+srcname: task-R-same-session
207 #+begin_src R 
209 #+end_src
211 This functional wrapper was implemented in order to efficiently return
212 the results of the execution of the entire source code block.  However
213 it inhibits the evaluation of source code blocks in the top level,
214 which would allow for persistence of variable assignment across
215 evaluations.  How can we allow *both* evaluation in the top level, and
216 efficient capture of the return value of an entire source code block
217 in a language independent manner?
219 Possible solutions...
220 1) we can't so we will have to implement two types of evaluation
221    depending on which is appropriate (functional or imperative)
222 2) we remove the functional wrapper and parse the source code block
223    into it's top level statements (most often but not always on line
224    breaks) so that we can isolate the final segment which is our
225    return value.
226 3) we add some sort of "#+return" line to the code block
227 4) we take advantage of each languages support for meta-programming
228    through =eval= type functions, and use said to evaluate the entire
229    blocks in such a way that their environment can be combined with the
230    global environment, and their results are still captured.
231 5) I believe that most modern languages which support interactive
232    sessions have support for a =last_result= type function, which
233    returns the result of the last input without re-calculation.  If
234    widely enough present this would be the ideal solution to a
235    combination of functional and imperative styles.
237 None of these solutions seem very desirable, but for now I don't see
238 what else would be possible.
240 Of these options I was leaning towards (1) and (4) but now believe
241 that if it is possible option (5) will be ideal.
243 **** (1) both functional and imperative evaluation
244 Pros
245 - can take advantage of built in functions for sending regions to the
246   inferior process
247 - retains the proven tested and working functional wrappers
249 Cons
250 - introduces the complication of keeping track of which type of
251   evaluation is best suited to a particular context
252 - the current functional wrappers may require some changes in order to
253   include the existing global context
255 **** (4) exploit language meta-programming constructs to explicitly evaluate code
256 Pros
257 - only one type of evaluation
259 Cons
260 - some languages may not have sufficient meta-programming constructs
262 **** (5) exploit some =last_value= functionality if present
264 Need to ensure that most languages have such a function, those without
265 will simply have to implement their own similar solution...
267 | language   | =last_value= function       |
268 |------------+-----------------------------|
269 | R          | .Last.value                 |
270 | ruby       | _                           |
271 | python     | _                           |
272 | shell      | see [[* last command for shells][last command for shells]] |
273 | emacs-lisp | see [[* emacs-lisp will be a special case][special-case]]            |
275 #+srcname: task-last-value
276 #+begin_src ruby
277 82 + 18
278 #+end_src
280 ***** last command for shells
281 Do this using the =tee= shell command, and continually pipe the output
282 to a file.
284 Got this idea from the following [[http://linux.derkeiler.com/Mailing-Lists/Fedora/2004-01/0898.html][email-thread]].
286 suggested from mailing list
288 #+srcname: bash-save-last-output-to-file
289 #+begin_src sh 
290 while read line 
291 do 
292   bash -c "$line" | tee /tmp/last.out1 
293   mv /tmp/last.out1 /tmp/last.out 
294 done
295 #+end_src
297 another proposed solution from the above thread
299 #+srcname: bash-save-in-variable
300 #+begin_src sh 
301 #!/bin/bash 
302 # so - Save Output. Saves output of command in OUT shell variable. 
303 OUT=`$*` 
304 echo $OUT 
305 #+end_src
307 and another
309 #+begin_quote
310 .inputrc: 
311 "^[k": accept-line 
312 "^M": " | tee /tmp/h_lastcmd.out ^[k" 
314 .bash_profile: 
315 export __=/tmp/h_lastcmd.out 
317 If you try it, Alt-k will stand for the old Enter; use "command $__" to 
318 access the last output. 
320 Best, 
324 Herculano de Lima Einloft Neto
325 #+end_quote
327 ***** emacs-lisp will be a special case
328 While it is possible for emacs-lisp to be run in a console type
329 environment (see the =elim= function) it is *not* possible to run
330 emacs-lisp in a different *session*.  Meaning any variable set top
331 level of the console environment will be set *everywhere* inside
332 emacs.  For this reason I think that it doesn't make any sense to
333 worry about session support for emacs-lisp.
335 *** Further thoughts on 'scripting' vs. functional approaches
337     These are just thoughts, I don't know how sure I am about this.
338     And again, perhaps I'm not saying anything very radical, just that
339     it would be nice to have some options supporting things like
340     receiving text output in the org buffer.
342     I can see that you've already gone some way down the road towards
343     the 'last value' approach, so sorry if my comments come rather
344     late. I am concerned that we are not giving sufficient attention
345     to stdout / the text that is returned by the interpreters. In
346     contrast, many of our potential users will be accustomed to a
347     'scripting' approach, where they are outputting text at various
348     points in the code block, not just at the end. I am leaning
349     towards thinking that we should have 2 modes of evaluation:
350     'script' mode, and 'functional' mode.
352     In script mode, evaluation of a code block would result in *all*
353     text output from that code block appearing as output in the org
354     buffer, presumably as an #+begin_example...#+end_example. There
355     could be an :echo option controlling whether the input commands
356     also appear in the output. [This is like Sweave].
358     In functional mode, the *result* of the code block is available as
359     an elisp object, and may appear in the org buffer as an org
360     table/string, via the mechanisms you have developed already.
362     One thing I'm wondering about is whether, in script mode, there
363     simply should not be a return value. Perhaps this is not so
364     different from what exists: script mode would be new, and what
365     exists currently would be functional mode.
367     I think it's likely that, while code evaluation will be exciting
368     to people, a large majority of our users in a large majority of
369     their usage will not attempt to actually use the return value from
370     a source code block in any meaningful way. In that case, it seems
371     rather restrictive to only allow them to see output from the end
372     of the code block.
374     Instead I think the most accessible way to introduce org-babel to
375     people, at least while they are learning it, is as an immensely
376     powerful environment in which to embed their 'scripts', which now
377     also allows them to 'run' their 'scripts'. Especially as such
378     people are likely to be the least capable of the user-base, a
379     possible design-rule would be to make the scripting style of usage
380     easy (default?), perhaps requiring a special option to enable a
381     functional style. Those who will use the functional style won't
382     have a problem understanding what's going on, whereas the 'skript
383     kiddies' might not even know the syntax for defining a function in
384     their language of choice. And of course we can allow the user to
385     set a variable in their .emacs controlling the preference, so that
386     functional users are not inconveniennced by having to provide
387     header args the whole time.
389     Please don't get the impression that I am down-valuing the
390     functional style of org-babel. I am constantly horrified at the
391     messy 'scripts' that my colleagues produce in perl or R or
392     whatever! Nevertheless that seems to be how a lot of people work.
393     
394     I think you were leaning towards the last-value approach because
395     it offered the possibility of unified code supporting both the
396     single evaluation environment and the functional style. If you
397     agree with any of the above then perhaps it will impact upon this
398     and mean that the code in the two branches has to differ a bit. In
399     that case, functional mode could perhaps after all evaluate each
400     code block in its own environment, thus (re)approaching 'true'
401     functional programming (side-effects are hard to achieve).
403 #+begin_src sh
404 ls > files
405 echo "There are `wc -l files` files in this directory"
407 #+end_src
409 *** TODO rework all source codes to use inferior-processes-buffers
411 this will involve...
412 1) creating a a-list of default *session* buffers for each source language
413 2) functions for dumping code to the *session* buffers which can be
414    overridden by each source code language
415 3) functions for retrieving results from the *sessions* buffers which
416    can be overridden by each source code
418 **** DONE R
420 #+srcname: task-R-with-inf-process-buffer
421 #+begin_src R 
422 a <- 8
423 b <- 9
424 c <- 10
425 a + b
426 #+end_src
428 **** TODO Ruby
430 #+srcname: ruby-use-last-output
431 #+begin_src ruby 
432 a = 1
433 b = 2
434 c = 3
435 (a + b) * c
436 #+end_src
439 *** TODO implement a *session* header argument
441 use this header argument to override the default *session* buffer
443 *** TODO remove source bodies from their functional wrappers
445 The current functional wrappers should be removed in favor of
446 incremental evaluation in inferior-source-buffers
448 *** TODO function to bring up inferior-process buffer
450 This should be callable from inside of a source-code block in an
451 org-mode buffer.  It should evaluate the header arguments, then bring
452 up the inf-proc buffer using =pop-to-buffer=.
454 *** TODO function to dump last N lines from inf-proc buffer into the current source block
456 Callable with a prefix argument to specify how many lines should be
457 dumped into the source-code buffer.
459 ** TODO support for working with =*Org Edit Src Example*= buffers [1/4]
460 *** TODO set buffer-local-process variables appropriately [DED]
461     I think something like this would be great. You've probably
462 already thought of this, but just to note it down: it would be really
463 nice if org-babel's notion of a buffer's 'session/process' played
464 nicely with ESS's notion of the buffer's session/process. ESS keeps
465 the current process name for a buffer in a buffer-local variable
466 ess-local-process-name. So one thing we will probably want to do is
467 make sure that the *Org Edit Src Example* buffer sets that variable
468 appropriately. [DED]
470 I had not thought of that, but I agree whole heartedly. [Eric]
472 Once this is done every variable should be able to dump regions into
473 their inferior-process buffer using major-mode functions.
475 *** TODO some possible requests/proposed changes for Carsten [2/3]
476     While I remember, some possible requests/proposed changes for Carsten
477     come to mind in that regard:
479 **** DONE Remap C-x C-s to save the source to the org buffer?
480      I've done this personally and I find it essential. I'm using 
481 #+begin_src emacs-lisp
482 (defun org-edit-src-save ()
483   "Update the parent org buffer with the edited source code, save
484 the parent org-buffer, and return to the source code edit
485 buffer."
486   (interactive)
487   (let ((p (point)))
488     (org-edit-src-exit)
489     (save-buffer)
490     (org-edit-src-code)
491     (goto-char p)))
493 (define-key org-exit-edit-mode-map "\C-x\C-s" 'org-edit-src-save)
494 #+end_src     
495     which seems to work.
497 I think this is great, but I think it should be implemented in the
498 org-mode core
499 **** TODO Rename buffer and minor mode?
500      Something shorter than *Org Edit Src Example* for the buffer
501      name. org-babel is bringing org's source code interaction to a
502      level of maturity where the 'example' is no longer
503      appropriate. And if further keybindings are going to be added to
504      the minor mode then maybe org-edit-src-mode is a better name than
505      org-exit-edit-mode.
507      Maybe we should name the buffer with a combination of the source
508      code and the session.  I think that makes sense.
510      [ES] Are you also suggesting a new org-edit-src minor mode?
511      [DED] org-exit-edit-mode is a minor mode that already exists:
513      Minor mode installing a single key binding, "C-c '" to exit special edit.
515      org-edit-src-save now has a binding in that mode, so I guess all
516      I'm saying at this stage is that it's a bit of a misnomer. But
517      perhaps we will also have more functionality to add to that minor
518      mode, making it even more of a misnomer. Perhaps something like
519      org-src-mode would be better.
521 **** DEFERRED a hook called when the src edit buffer is created
522 This should be implemented in the org-mode core
523      
525 *** DEFERRED send code to inferior process
526 Another thought on this topic: I think we will want users to send
527 chunks of code to the interpreter from within the *Org Edit Src*
528 buffer, and I think that's what you have in mind already. In ESS that
529 is done using the ess-eval-* functions. [DED]
531 I think we can leave this up to the major-mode in the source code
532 buffer, as almost every source-code major mode will have functions for
533 doing things like sending regions to the inferior process.  If
534 anything we might need to set the value of the buffer local inferior
535 process variable. [Eric]
537 *** TODO optionally evaluate header references when we switch to =*Org Edit Src*= buffer
538 That seems to imply that the header references need to be evaluated
539 and transformed into the target language object when we hit C-c ' to
540 enter the *Org Edit Src* buffer [DED]
542 Good point, I heartily agree that this should be supported [Eric]
544 (or at least before the first time we attempt to evaluate code in that
545 buffer -- I suppose there might be an argument for lazy evaluation, in
546 case someone hits C-c ' but is "just looking" and not actually
547 evaluating anything.) Of course if evaluating the reference is
548 computationally intensive then the user might have to wait before they
549 get the *Org Edit Src* buffer. [DED]
551 I fear that it may be hard to anticipate when the references will be
552 needed, some major-modes do on-the-fly evaluation while the buffer is
553 being edited.  I think that we should either do this before the buffer
554 is opened or not at all, specifically I think we should resolve
555 references if the user calls C-c ' with a prefix argument.  Does that
556 sound reasonable? [Eric]
558 Yes [Dan]
560 ** TODO fully purge org-babel-R of direct comint interaction
561 try to remove all code under the [[file:lisp/org-babel-R.el::functions%20for%20evaluation%20of%20R%20code][;; functions for evaluation of R code]] line
563 ** TODO improve the source-block snippet
565 [[file:~/src/emacs-starter-kit/src/snippets/text-mode/rst-mode/chap::name%20Chapter%20title][file:~/src/emacs-starter-kit/src/snippets/text-mode/rst-mode/chap::name Chapter title]]
566 #+begin_example
567 ,#name : Chapter title
568 ,# --
569 ${1:Chapter}
570 ${1:$(make-string (string-width text) ?\=)}
573 #+end_example
575 [[file:snippets/org-mode/sb][sb -- snippet]]
577 waiting for guidance from those more familiar with yasnippets
579 ** TODO resolve references to other buffers
580    This would allow source blocks to call upon tables, source-blocks,
581    and results in other buffers.
582    
583    See...
584    - [[file:lisp/org-babel-ref.el::TODO%20allow%20searching%20for%20names%20in%20other%20buffers][org-babel-ref.el:searching-in-other-buffers]]
585    - [[file:lisp/org-babel.el::defun%20org-babel%20find%20named%20result%20name][org-babel.el#org-babel-find-named-result]]
587 ** TODO figure out how to handle graphic output
588 This is listed under [[* graphical output][graphical output]] in out objectives.
590 This should take advantage of the =:results file= option, and
591 languages which almost always produce graphical output should set
592 =:results file= to true by default.  That would handle placing these
593 results in the buffer.  Then if there is a combination of =silent= and
594 =file= =:results= headers we could drop the results to a temp buffer
595 and pop open that buffer...
597 ** TODO share org-babel
598 how should we share org-babel?
600 - post to org-mode and ess mailing lists
601 - create a org-babel page on worg
602 - create a short screencast demonstrating org-babel in action
604 *** examples
605 we need to think up some good examples
607 **** interactive tutorials
608 This could be a place to use [[* org-babel assertions][org-babel assertions]].
610 for example the first step of a tutorial could assert that the version
611 of the software-package (or whatever) is equal to some value, then
612 source-code blocks could be used with confidence (and executed
613 directly from) the rest of the tutorial.
615 **** answering a text-book question w/code example
616 org-babel is an ideal environment enabling both the development and
617 demonstrationg of the code snippets required as answers to many
618 text-book questions.
620 **** something using tables
621 maybe something along the lines of calculations from collected grades
623 **** file sizes
624 Maybe something like the following which outputs sizes of directories
625 under the home directory, and then instead of the trivial =emacs-lisp=
626 block we could use an R block to create a nice pie chart of the
627 results.
629 #+srcname: sizes
630 #+begin_src bash :results replace
631 du -sc ~/*
632 #+end_src
634 #+begin_src emacs-lisp :var sizes=sizes :results replace
635 (mapcar #'car sizes)
636 #+end_src
638 ** TODO command line execution
639 Allow source code blocks to be called form the command line.  This
640 will be easy using the =sbe= function in [[file:lisp/org-babel-table.el][org-babel-table.el]].
642 This will rely upon [[* resolve references to other buffers][resolve references to other buffers]].
644 ** TODO inline source code blocks [3/5]
645    Like the =\R{ code }= blocks
647    not sure what the format should be, maybe just something simple
648    like =src_lang[]{}= where lang is the name of the source code
649    language to be evaluated, =[]= is optional and contains any header
650    arguments and ={}= contains the code.
652    (see [[* (sandbox) inline source blocks][the-sandbox]])
654 *** DONE evaluation with \C-c\C-c
655 Putting aside the header argument issue for now we can just run these
656 with the following default header arguments
657 - =:results= :: silent
658 - =:exports= :: results
660 *** DONE inline exportation
661 Need to add an interblock hook (or some such) through org-exp-blocks
662 *** DONE header arguments
663 We should make it possible to use header arguments.
665 *** TODO fontification
666 we should color these blocks differently
668 *** TODO refine html exportation
669 should use a span class, and should show original source in tool-tip
671 ** TODO formulate general rules for handling vectors and tables / matrices with names
672    This is non-trivial, but may be worth doing, in particular to
673    develop a nice framework for sending data to/from R.
674 *** Notes
675     In R, indexing vector elements, and rows and columns, using
676     strings rather than integers is an important part of the
677     language.
678  - elements of a vector may have names
679  - matrices and data.frames may have "column names" and "row names"
680    which can be used for indexing
681  - In a data frame, row names *must* be unique
682 Examples
683 #+begin_example
684 > # a named vector
685 > vec <- c(a=1, b=2)
686 > vec["b"]
689 > mat <- matrix(1:4, nrow=2, ncol=2, dimnames=list(c("r1","r2"), c("c1","c2")))
690 > mat
691    c1 c2
692 r1  1  3
693 r2  2  4
694 > # The names are separate from the data: they do not interfere with operations on the data
695 > mat * 3
696    c1 c2
697 r1  3  9
698 r2  6 12
699 > mat["r1","c2"]
700 [1] 3
701 > df <- data.frame(var1=1:26, var2=26:1, row.names=letters)
702 > df$var2
703  [1] 26 25 24 23 22 21 20 19 18 17 16 15 14 13 12 11 10  9  8  7  6  5  4  3  2  1
704 > df["g",]
705   var1 var2
706 g    7   20
707 #+end_example
709  So it's tempting to try to provide support for this in org-babel. For example
710  - allow R to refer to columns of a :var reference by their names
711  - When appropriate, results from R appear in the org buffer with "named
712    columns (and rows)"
714    However none (?) of the other languages we are currently supporting
715    really have a native matrix type, let alone "column names" or "row
716    names". Names are used in e.g. python and perl to refer to entries
717    in dicts / hashes.
719    It currently seems to me that support for this in org-babel would
720    require setting rules about when org tables are considered to have
721    named columns/fields, and ensuring that (a) languages with a notion
722    of named columns/fields use them appropriately and (b) languages
723    with no such notion do not treat then as data.
725  - Org allows something that *looks* like column names to be separated
726    by a hline
727  - Org also allows a row to *function* as column names when special
728    markers are placed in the first column. An hline is unnecessary
729    (indeed hlines are purely cosmetic in org [correct?]
730  - Org does not have a notion of "row names" [correct?]
731     
732    The full org table functionality exeplified [[http://orgmode.org/manual/Advanced-features.html#Advanced-features][here]] has features that
733    we would not support in e.g. R (like names for the row below).
734    
735 *** Initial statement: allow tables with hline to be passed as args into R
736    This doesn't seem to work at the moment (example below). It would
737    also be nice to have a natural way for the column names of the org
738    table to become the column names of the R data frame, and to have
739    the option to specify that the first column is to be used as row
740    names in R (these must be unique). But this might require a bit of
741    thinking about.
744 #+TBLNAME: egtable
745 | col1 | col2    | col3 |
746 |------+---------+------|
747 |    1 | 2       |    3 |
748 |    4 | schulte |    6 |
750 #+TBLNAME: egtable2
751 | 1 |         2 | 3 |
752 | 4 | schulte   | 6 |
754 #+begin_src R var tabel=egtable
755 tabel
756 #+end_src
758 #+resname:
759 | "col1" | "col2"    | "col3" |
760 |--------+-----------+--------|
761 |      1 | 2         |      3 |
762 |      4 | "schulte" |      6 |
765 Another example is in the [[*operations%20in%20on%20tables][grades example]].
767 ** PROPOSED Are we happy with current behaviour regarding vector/scalar output?
768 This simple example of multilingual chaining produces vector output if
769 there are spaces in the message and scalar otherwise.
771 #+begin_src R :var msg=msg-from-python
772 paste(msg, "und_R", sep="_")
773 #+end_src
775 #+srcname: msg-from-python
776 #+begin_src python :var msg=msg-from-elisp
777 msg + "_y_python"
778 #+end_src
780 #+srcname: msg-from-elisp
781 #+begin_src emacs-lisp :var msg="org-babel_speaks"
782 (concat msg "_elisp")
783 #+end_src
785 ** PROPOSED conversion between org-babel and noweb (e.g. .Rnw) format
786    I haven't thought about this properly. Just noting it down. What
787    Sweave uses is called "R noweb" (.Rnw).
788    
789    I found a good description of noweb in the following article (see
790    the [[http://www.cs.tufts.edu/~nr/pubs/lpsimp.pdf][pdf]]).
791    
792    I think there are two parts to noweb, the construction of
793    documentation and the extraction of source-code (with notangle).
795    *documentation*: org-mode handles all of our documentation needs in
796    a manner that I believe is superior to noweb.
797    
798    *source extraction* At this point I don't see anyone writing large
799    applications with 100% of the source code contained in org-babel
800    files, rather I see org-babel files containing things like
801    - notes with active code chunks
802    - interactive tutorials
803    - requirements documents with code running test suites
804    - and of course experimental reports with the code to run the
805      experiment, and perform analysis
807    Basically I think the scope of the programs written in org-babel
808    (at least initially) will be small enough that it wont require the
809    addition of a tangle type program to extract all of the source code
810    into a running application.
812    On the other hand, since we already have named blocks of source
813    code which reference other blocks on which they rely, this
814    shouldn't be too hard to implement either on our own, or possibly
815    relying on something like noweb/notangle.
817 ** PROPOSED support for passing paths to files between source blocks
818 Maybe this should be it's own result type (in addition to scalars and
819 vectors).  The reason being that some source-code blocks (for example
820 ditaa or anything that results in the creation of a file) may want to
821 pass a file path back to org-mode which could then be inserted into
822 the org-mode buffer as a link to the file...
824 This would allow for display of images upon export providing
825 functionality similar to =org-exp-blocks= only in a more general
826 manner.
828 ** PROPOSED re-implement helper functions from org-R
829 Much of the power of org-R seems to be in it's helper functions for
830 the quick graphing of tables.  Should we try to re-implement these
831 functions on top of org-babel?
833 I'm thinking this may be useful both to add features to org-babel-R and
834 also to potentially suggest extensions of the framework.  For example
835 one that comes to mind is the ability to treat a source-code block
836 like a function which accepts arguments and returns results. Actually
837 this can be it's own TODO (see [[* source blocks as functions][source blocks as functions]]).
839 ** DEFERRED use textConnection to pass tsv to R?
840    When passing args from the org buffer to R, the following route is
841    used: arg in buffer -> elisp -> tsv on file -> data frame in R. I
842    think it would be possible to avoid having to write to file by
843    constructing an R expression in org-babel-R-assign-elisp, something
844    like this
846 #+begin_src emacs-lisp
847 (org-babel-R-input-command
848  (format  "%s <- read.table(textConnection(\"%s\"), sep=\"\\t\", as.is=TRUE)"
849           name (orgtbl-to-tsv value '(:sep "\t" :fmt org-babel-R-quote-tsv-field))))
850 #+end_src
852    I haven't tried to implement this yet as it's basically just
853    fiddling with something that works. The only reason for it I can
854    think of would be efficiency and I haven't tested that.
856    This Didn't work after an initial test.  I still think this is a
857    good idea (I also think we should try to do something similar when
858    writing out results frmo R to elisp) however as it wouldn't result
859    in any functional changes I'm bumping it down to deferred for
860    now. [Eric]
862 for quick tests
864 #+tblname: quick-test
865 | 1 | 2 | 3 |
867 #+srcname: quick-test-src-blk
868 #+begin_src R :var vec=quick-test
869 mean(mean(vec))
870 #+end_src
872 : 2
874 ** DEFERRED re-implement R evaluation using ess-command or ess-execute
875    I don't have any complaints with the current R evaluation code or
876    behaviour, but I think it would be good to use the ESS functions
877    from a political point of view. Plus of course it has the normal
878    benefits of an API (insulates us from any underlying changes etc). [DED]
880    I'll look into this.  I believe that I looked at and rejected these
881    functions initially but now I can't remember why.  I agree with
882    your overall point about using API's where available.  I will take
883    a look back at these and either switch to using the ess commands,
884    or at least articulate under this TODO the reasons for using our
885    custom R-interaction commands. [Eric]
887    ess-execute
889    Lets just replace =org-babel-R-input-command= with =ess-execute=.
891    I tried this, and although it works in some situations, I find that
892    =ess-command= will often just hang indefinitely without returning
893    results.  Also =ess-execute= will occasionally hang, and pops up
894    the buffer containing the results of the command's execution, which
895    is undesirable.  For now these functions can not be used.  Maybe
896    someone more familiar with the ESS code can recommend proper usage
897    of =ess-command= or some other lower-level function which could be
898    used in place of [[file:lisp/org-babel-R.el::defun%20org-babel%20R%20input%20command%20command][org-babel-R-input-command]].
900 *** ess functions
901    
902 #+begin_quote ess-command
903 (ess-command COM &optional BUF SLEEP NO-PROMPT-CHECK)
905 Send the ESS process command COM and delete the output
906 from the ESS process buffer.  If an optional second argument BUF exists
907 save the output in that buffer. BUF is erased before use.
908 COM should have a terminating newline.
909 Guarantees that the value of .Last.value will be preserved.
910 When optional third arg SLEEP is non-nil, `(sleep-for (* a SLEEP))'
911 will be used in a few places where `a' is proportional to `ess-cmd-delay'.
912 #+end_quote
914 #+begin_quote ess-execute
915 (ess-execute COMMAND &optional INVERT BUFF MESSAGE)
917 Send a command to the ESS process.
918 A newline is automatically added to COMMAND.  Prefix arg (or second arg
919 INVERT) means invert the meaning of
920 `ess-execute-in-process-buffer'.  If INVERT is 'buffer, output is
921 forced to go to the process buffer.  If the output is going to a
922 buffer, name it *BUFF*.  This buffer is erased before use.  Optional
923 fourth arg MESSAGE is text to print at the top of the buffer (defaults
924 to the command if BUFF is not given.)
925 #+end_quote
927 *** out current setup
929     1) The body of the R source code block is wrapped in a function
930     2) The function is called inside of a =write.table= function call
931        writing the results to a table
932     3) The table is read using =org-table-import=
934 ** DEFERRED Rework Interaction with Running Processes [0/3]
935 *** TODO ability to select which of multiple sessions is being used
936     Increasingly it is looking like we're going to want to run all
937     source code blocks in comint buffer (sessions).  Which will have
938     the benefits of
939     1) allowing background execution
940     2) maintaining state between source-blocks
941        - allowing inline blocks w/o header arguments 
943 **** R sessions
944      (like ess-switch-process in .R buffers)
945      
946      Maybe this could be packaged into a header argument, something
947      like =:R_session= which could accept either the name of the
948      session to use, or the string =prompt=, in which case we could use
949      the =ess-switch-process= command to select a new process.
950      
951 *** TODO evaluation of shell code as background process? 
952     After C-c C-c on an R code block, the process may appear to
953     block, but C-g can be used to reclaim control of the .org buffer,
954     without interrupting the R evalution. However I believe this is not
955     true of bash/sh evaluation. [Haven't tried other languages] Perhaps
956     a solution is just to background the individual shell commands.
958     The other languages (aside from emacs lisp) are run through the
959     shell, so if we find a shell solution it should work for them as
960     well.
961     
962     Adding an ampersand seems to be a supported way to run commands in
963     the background (see [[http://www.emacswiki.org/emacs/ExecuteExternalCommand#toc4][external-commands]]).  Although a more extensible
964     solution may involve the use of the [[elisp:(progn (describe-function 'call-process-region) nil)][call-process-region]] function.
965     
966     Going to try this out in a new file [[file:lisp/org-babel-proc.el][org-babel-proc.el]].  This should
967     contain functions for asynchronously running generic shell commands
968     in the background, and then returning their input.
970 **** partial update of org-mode buffer
971     The sleekest solution to this may be using a comint buffer, and
972     then defining a filter function which would incrementally interpret
973     the results as they are returned, including insertion into the
974     org-mode buffer.  This may actually cause more problems than it is
975     worth, what with the complexities of identifying the types of
976     incrementally returned results, and the need for maintenance of a
977     process marker in the org buffer.
979 **** 'working' spinner
980      It may be nice and not too difficult to place a spinner on/near the
981      evaluating source code block
983 *** TODO conversion of output from interactive shell, R (and python) sessions to org-babel buffers
984     [DED] This would be a nice feature I think. Although an org-babel
985     purist would say that it's working the wrong way round... After
986     some interactive work in a *R* buffer, you save the buffer, maybe
987     edit out some lines, and then convert it to org-babel format for
988     posterity. Same for a shell session either in a *shell* buffer, or
989     pasted from another terminal emulator. And python of course.
991 ** DONE Remove protective commas from # comments before evaluating
992    org inserts protective commas in front of ## comments in language
993    modes that use them. We need to remove them prior to sending code
994    to the interpreter.
996 #+srcname: testing-removal-of-protective-comas
997 #+begin_src ruby
998 ,# this one might break it??
999 :comma_protection
1000 #+end_src
1002 ** DONE pass multiple reference arguments into R
1003    Can we do this? I wasn't sure how to supply multiple 'var' header
1004    args. Just delete this if I'm being dense.
1006    This should be working, see the following example...
1008 #+srcname: two-arg-example
1009 #+begin_src R :var n=2 :var m=8
1010 n + m
1011 #+end_src
1013 #+resname: two-arg-example
1014 : 10
1016 ** DONE ensure that table ranges work
1017 when a table range is passed to org-babel as an argument, it should be
1018 interpreted as a vector.
1020 | 1 | 2 | simple       |
1021 | 2 | 3 | Fixnum:1     |
1022 | 3 | 4 | Array:123456 |
1023 | 4 | 5 |              |
1024 | 5 | 6 |              |
1025 | 6 | 7 |              |
1026 #+TBLFM: @1$3='(sbe simple-sbe-example (n 4))::@2$3='(sbe task-table-range (n @1$1..@6$1))::@3$3='(sbe task-table-range (n (@1$1..@6$1)))
1028 #+srcname: simple-sbe-example
1029 #+begin_src emacs-lisp 
1030 "simple"
1031 #+end_src
1033 #+srcname: task-table-range
1034 #+begin_src ruby :var n=simple-sbe-example
1035 "#{n.class}:#{n}"
1036 #+end_src
1038 #+srcname: simple-results
1039 #+begin_src emacs-lisp :var n=task-table-range(n=(1 2 3))
1041 #+end_src
1043 #+resname: simple-results
1044 : Array:123
1046 #+srcname: task-arr-referent
1047 #+begin_src ruby :var ar=(1 2 3)
1048 ar.size
1049 #+end_src
1051 #+resname: task-arr-referent
1052 : 3
1054 ** DONE global variable indicating default to vector output
1055 how about an alist... =org-babel-default-header-args= this may already
1056 exist... just execute the following and all source blocks will default
1057 to vector output
1059 #+begin_src emacs-lisp 
1060 (setq org-babel-default-header-args '((:results . "vector")))
1061 #+end_src
1063 ** DONE name named results if source block is named
1064 currently this isn't happening although it should be
1066 #+srcname: test-naming-named-source-blocks
1067 #+begin_src emacs-lisp 
1068 :namer
1069 #+end_src
1071 #+resname: test-naming-named-source-blocks
1072 : :namer
1073 ** DONE (simple caching) check for named results before source blocks
1074 see the TODO comment in [[file:lisp/org-babel-ref.el::TODO%20This%20should%20explicitly%20look%20for%20resname%20lines%20before][org-babel-ref.el#org-babel-ref-resolve-reference]]
1075 ** DONE set =:results silent= when eval with prefix argument
1077 #+begin_src emacs-lisp
1078 'silentp
1079 #+end_src
1080 ** DONE results-type header (vector/file) [3/3]
1081    In response to a point in Dan's email.  We should allow the user to
1082    force scalar or vector results.  This could be done with a header
1083    argument, and the default behavior could be controlled through a
1084    configuration variable.
1085    
1086 #+srcname: task-trivial-vector
1087 #+begin_src ruby :results replace vector
1088 :scalar
1089 #+end_src
1091 #+resname:
1092 | ":scalar" |
1094    since it doesn't make sense to turn a vector into a scalar, lets
1095    just add a two values...
1096    
1097    - vector :: forces the results to be a vector (potentially 1 dimensional)
1098    - file :: this throws an error if the result isn't a string, and
1099              tries to treat it as a path to a file.
1101    I'm just going to cram all of these into the =:results= header
1102    argument.  Then if we allow multiple header arguments it should
1103    work out, for example one possible header argument string could be
1104    =:results replace vector file=, which would *replace* any existing
1105    results forcing the results into an org-mode table, and
1106    interpreting any strings as file paths.
1108 *** DONE multiple =:results= headers
1110 #+srcname: multiple-result-headers
1111 #+begin_src ruby :results replace silent
1112 :schulte
1113 #+end_src
1115 #+resname:
1117 *** DONE file result types
1118 When inserting into an org-mode buffer create a link with the path
1119 being the value, and optionally the display being the
1120 =file-name-nondirectory= if it exists.
1122 #+srcname: task-file-result
1123 #+begin_src python :results replace file
1124 "something"
1125 #+end_src
1127 #+resname:
1128 [[something][something]]
1131 This will be useful because blocks like =ditaa= and =dot= can return
1132 the string path of their files, and can add =file= to their results
1133 header.
1135 *** DONE vector result types
1137 #+srcname: task-force-results
1138 #+begin_src emacs-lisp :results vector
1140 #+end_src
1142 #+resname:
1143 | 8 |
1145 ** DONE results name
1146     In order to do this we will need to start naming our results.
1147     Since the source blocks are named with =#+srcname:= lines we can
1148     name results with =#+resname:= lines (if the source block has no
1149     name then no name is given to the =#+resname:= line on creation,
1150     otherwise the name of the source block is used).
1152     This will have the additional benefit of allowing results and
1153     source blocks to be located in different places in a buffer (and
1154     eventually in different buffers entirely).
1156 #+srcname: developing-resnames
1157 #+begin_src emacs-lisp  :results silent
1158 'schulte
1159 #+end_src
1161     Once source blocks are able to find their own =#+resname:= lines
1162     we then need to...
1164 #+srcname: sbe-w-new-results
1165 #+begin_src emacs-lisp :results replace
1166 (sbe "developing-resnames")
1167 #+end_src
1169 #+resname:
1170 : schulte
1172 *** TODO change the results insertion functions to use these lines
1174 *** TODO teach references to resolve =#+resname= lines.
1176 ** DONE org-babel tests org-babel [1/1]
1177 since we are accumulating this nice collection of source-code blocks
1178 in the sandbox section we should make use of them as unit tests.
1179 What's more, we should be able to actually use org-babel to run these
1180 tests.
1182 We would just need to cycle over every source code block under the
1183 sandbox, run it, and assert that the return value is equal to what we
1184 expect.
1186 I have the feeling that this should be possible using only org-babel
1187 functions with minimal or no additional elisp.  It would be very cool
1188 for org-babel to be able to test itself.
1190 This is now done, see [[* Tests]].
1192 *** DEFERRED org-babel assertions (may not be necessary)
1193 These could be used to make assertions about the results of a
1194 source-code block.  If the assertion fails then the point could be
1195 moved to the block, and error messages and highlighting etc... could
1196 ensue
1198 ** DONE make C-c C-c work anywhere within source code block?
1199    This seems like it would be nice to me, but perhaps it would be
1200    inefficient or ugly in implementation? I suppose you could search
1201    forward, and if you find #+end_src before you find #+begin_src,
1202    then you're inside one. [DED]
1204    Agreed, I think inside of the =#+srcname: line= would be useful as
1205    well.
1207 #+srcname: testing-out-cc
1208 #+begin_src emacs-lisp
1209 'schulte
1210 #+end_src
1212 ** DONE integration with org tables
1213 We should make it easy to call org-babel source blocks from org-mode
1214 table formulas.  This is practical now that it is possible to pass
1215 arguments to org-babel source blocks.
1217 See the related [[* (sandbox) integration w/org tables][sandbox]] header for tests/examples.
1219 *** digging in org-table.el
1220 In the past [[file:~/src/org/lisp/org-table.el::org%20table%20el%20The%20table%20editor%20for%20Org%20mode][org-table.el]] has proven difficult to work with.
1222 Should be a hook in [[file:~/src/org/lisp/org-table.el::defun%20org%20table%20eval%20formula%20optional%20arg%20equation][org-table-eval-formula]].
1224 Looks like I need to change this [[file:~/src/org/lisp/org-table.el::if%20lispp][if statement]] (line 2239) into a cond
1225 expression.
1227 ** DONE source blocks as functions
1229 Allow source code blocks to be called like functions, with arguments
1230 specified.  We are already able to call a source-code block and assign
1231 it's return result to a variable.  This would just add the ability to
1232 specify the values of the arguments to the source code block assuming
1233 any exist.  For an example see 
1235 When a variable appears in a header argument, how do we differentiate
1236 between it's value being a reference or a literal value?  I guess this
1237 could work just like a programming language.  If it's escaped or in
1238 quotes, then we count it as a literal, otherwise we try to look it up
1239 and evaluate it.
1241 ** DONE folding of code blocks? [2/2]
1242    [DED] In similar way to using outline-minor-mode for folding function
1243    bodies, can we fold code blocks?  #+begin whatever statements are
1244    pretty ugly, and in any case when you're thinking about the overall
1245    game plan you don't necessarily want to see the code for each Step.
1247 *** DONE folding of source code block
1248     Sounds good, and wasn't too hard to implement.  Code blocks should
1249     now be fold-able in the same manner as headlines (by pressing TAB
1250     on the first line).
1252 *** REJECTED folding of results
1253     So, lets do a three-stage tab cycle... First fold the src block,
1254     then fold the results, then unfold.
1255     
1256     There's no way to tell if the results are a table or not w/o
1257     actually executing the block which would be too expensive of an
1258     operation.
1260 ** DONE selective export of text, code, figures
1261    [DED] The org-babel buffer contains everything (code, headings and
1262    notes/prose describing what you're up to, textual/numeric/graphical
1263    code output, etc). However on export to html / LaTeX one might want
1264    to include only a subset of that content. For example you might
1265    want to create a presentation of what you've done which omits the
1266    code.
1268    [EMS] So I think this should be implemented as a property which can
1269    be set globally or on the outline header level (I need to review
1270    the mechanics of org-mode properties).  And then as a source block
1271    header argument which will apply only to a specific source code
1272    block.  A header argument of =:export= with values of
1273    
1274    - =code= :: just show the code in the source code block
1275    - =none= :: don't show the code or the results of the evaluation
1276    - =results= :: just show the results of the code evaluation (don't
1277                   show the actual code)
1278    - =both= :: show both the source code, and the results
1280 this will be done in [[* (sandbox) selective export][(sandbox) selective export]].
1282 ** DONE a header argument specifying silent evaluation (no output)
1283 This would be useful across all types of source block.  Currently
1284 there is a =:replace t= option to control output, this could be
1285 generalized to an =:output= option which could take the following
1286 options (maybe more)
1288 - =t= :: this would be the default, and would simply insert the
1289          results after the source block
1290 - =replace= :: to replace any results which may already be there
1291 - =silent= :: this would inhibit any insertion of the results
1293 This is now implemented see the example in the [[* silent evaluation][sandbox]]
1295 ** DONE assign variables from tables in R
1296 This is now working (see [[* (sandbox table) R][(sandbox-table)-R]]).  Although it's not that
1297 impressive until we are able to print table results from R.
1299 ** DONE insert 2-D R results as tables
1300 everything is working but R and shell
1302 *** DONE shells
1304 *** DONE R
1306 This has already been tackled by Dan in [[file:existing_tools/org-R.el::defconst%20org%20R%20write%20org%20table%20def][org-R:check-dimensions]].  The
1307 functions there should be useful in combination with [[http://cran.r-project.org/doc/manuals/R-data.html#Export-to-text-files][R-export-to-csv]]
1308 as a means of converting multidimensional R objects to emacs lisp.
1310 It may be as simple as first checking if the data is multidimensional,
1311 and then, if so using =write= to write the data out to a temporary
1312 file from which emacs can read the data in using =org-table-import=.
1314 Looking into this further, is seems that there is no such thing as a
1315 scalar in R [[http://tolstoy.newcastle.edu.au/R/help/03a/3733.html][R-scalar-vs-vector]]  In that light I am not sure how to
1316 deal with trivial vectors (scalars) in R.  I'm tempted to just treat
1317 them as vectors, but then that would lead to a proliferation of
1318 trivial 1-cell tables...
1320 ** DONE allow variable initialization from source blocks
1321 Currently it is possible to initialize a variable from an org-mode
1322 table with a block argument like =table=sandbox= (note that the
1323 variable doesn't have to named =table=) as in the following example
1325 #+TBLNAME: sandbox
1326 | 1 |       2 | 3 |
1327 | 4 | schulte | 6 |
1329 #+begin_src emacs-lisp :var table=sandbox :results replace
1330 (message (format "table = %S" table))
1331 #+end_src
1333 : "table = ((1 2 3) (4 \"schulte\" 6))"
1335 It would be good to allow initialization of variables from the results
1336 of other source blocks in the same manner.  This would probably
1337 require the addition of =#+SRCNAME: example= lines for the naming of
1338 source blocks, also the =table=sandbox= syntax may have to be expanded
1339 to specify whether the target is a source code block or a table
1340 (alternately we could just match the first one with the given name
1341 whether it's a table or a source code block).
1343 At least initially I'll try to implement this so that there is no need
1344 to specify whether the reference is to a table or a source-code block.
1345 That seems to be simpler both in terms of use and implementation.
1347 This is now working for emacs-lisp, ruby and python (and mixtures of
1348 the three) source blocks.  See the examples in the [[* (sandbox) referencing other source blocks][sandbox]].
1350 This is currently working only with emacs lisp as in the following
1351 example in the [[* emacs lisp source reference][emacs lisp source reference]].
1354 ** TODO Add languages [0/5]
1355 I'm sure there are many more that aren't listed here.  Please add
1356 them, and bubble any that you particularly care about up to the top.
1358 Any new language should be implemented in a org-babel-lang.el file.
1359 Follow the pattern set by [[file:lisp/org-babel-script.el][org-babel-script.el]], [[file:lisp/org-babel-shell.el][org-babel-shell.el]] and
1360 [[file:lisp/org-babel-R.el][org-babel-R.el]].
1362 *** TODO perl
1363 This could probably be added to [[file:lisp/org-babel-script.el][org-babel-script.el]]
1365 *** TODO java
1367 *** TODO ditaa
1368 (see [[* file result types][file result types]])
1370 *** TODO dot
1371 (see [[* file result types][file result types]])
1373 *** TODO asymptote
1374 (see [[* file result types][file result types]])
1377 * Bugs [11/14]
1379 ** TODO non-orgtbl formatted lists
1380 for example
1382 #+srcname: this-doesn't-match-orgtbl
1383 #+begin_src emacs-lisp :results replace
1384 '((:results . "replace"))
1385 #+end_src
1387 #+resname: this-doesn't-match-orgtbl
1389 ** TODO collapsing consecutive newlines in string output
1391 #+srcname: multi-line-string-output
1392 #+begin_src ruby :results replace
1393 "the first line ends here
1396      and this is the second one
1398 even a third"
1399 #+end_src
1401 #+resname:
1402 : the first line ends here
1403 :            and this is the second one
1404 :       return even a third
1406 ** TODO cursor movement when evaluating source blocks
1407    E.g. the pie chart example. Despite the save-window-excursion in
1408    org-babel-execute:R. (I never learned how to do this properly: org-R
1409    jumps all over the place...)
1411 ** DONE R-code broke on "org-babel" rename
1413 #+srcname: bug-R-babels
1414 #+begin_src R 
1415 8 * 2
1416 #+end_src
1418 ** DONE error on trivial R results
1420 So I know it's generally not a good idea to squash error without
1421 handling them, but in this case the error almost always means that
1422 there was no file contents to be read by =org-table-import=, so I
1423 think it's ok.
1425 #+srcname: bug-trivial-r1
1426 #+begin_src R :results replace
1427 pie(c(1, 2, 3), labels = c(1, 2, 3))
1428 #+end_src
1430 #+srcname: bug-trivial-r2
1431 #+begin_src R :results replace
1433 #+end_src
1435 #+resname: bug-trivial-r2
1436 : 8
1438 #+srcname: bug-trivial-r3
1439 #+begin_src R :results replace
1440 c(1,2,3)
1441 #+end_src
1443 #+resname: bug-trivial-r3
1444 | 1 |
1445 | 2 |
1446 | 3 |
1448 ** DONE ruby new variable creation (multi-line ruby blocks)
1449 Actually it looks like we were dropping all but the last line.
1451 #+srcname: multi-line-ruby-test
1452 #+begin_src ruby :var table=bug-numerical-table :results replace
1453 total = 0
1454 table.each{|n| total += n}
1455 total/table.size
1456 #+end_src
1458 #+resname:
1459 : 2
1461 ** DONE R code execution seems to choke on certain inputs
1462 Currently the R code seems to work on vertical (but not landscape)
1463 tables
1465 #+srcname: little-fake
1466 #+begin_src emacs-lisp 
1467 "schulte"
1468 #+end_src
1470 #+begin_src R :var num=little-fake
1472 #+end_src
1474 #+resname:
1475 : schulte
1476 : 11
1477 : 11
1478 : 11
1479 : schulte
1480 : 9
1481 : 9
1482 : 11
1484 #+srcname: set-debug-on-error
1485 #+begin_src emacs-lisp :results silent
1486 (setq debug-on-error t)
1487 #+end_src
1489 #+srcname: bug-numerical-table
1490 #+begin_src emacs-lisp :results silent
1491 '(1 2 3)
1492 #+end_src
1494 #+srcname: bug-R-number-evaluation
1495 #+begin_src R :var table=bug-numerical-table :results replace
1496 mean(mean(table))
1497 #+end_src
1499 #+resname:
1500 : 2
1502 #+tblname: bug-vert-table
1503 | 1 |
1504 | 2 |
1505 | 3 |
1507 #+srcname: bug-R-vertical-table
1508 #+begin_src R :var table=bug-vert-table :results silent
1509 mean(table)
1510 #+end_src
1512 ** DEFERRED org bug/request: prevent certain org behaviour within code blocks
1513    E.g. [[]] gets recognised as a link (when there's text inside the
1514    brackets). This is bad for R code at least, and more generally
1515    could be argued to be inappropriate. Is it difficult to get org to
1516    ignore text in code blocks? [DED]
1517    
1518    I believe Carsten addressed this recently on the mailing list with
1519    the comment that it was indeed a difficult issue.  I believe this
1520    may be one area where we could wait for an upstream (org-mode) fix.
1521 ** DONE with :results replace, non-table output doesn't replace table output
1522    And vice versa. E.g. Try this first with table and then with len(table) [DED]
1523 #+begin_src python :var table=sandbox :results replace
1524 table
1525 #+end_src
1527 | 1 |         2 | 3 |
1528 | 4 | "schulte" | 6 |
1529 : 2
1531 Yes, this is certainly a problem.  I fear that if we begin replacing
1532 anything immediately following a source block (regardless of whether
1533 it matches the type of our current results) we may accidentally delete
1534 hand written portions of the user's org-mode buffer.
1536 I think that the best solution here would be to actually start
1537 labeling results with a line that looks something like...
1539 #+results: name
1541 This would have a couple of benefits...
1542 1) we wouldn't have to worry about possibly deleting non-results
1543    (which is currently an issue)
1544 2) we could reliably replace results even if there are different types
1545 3) we could reference the results of a source-code block in variable
1546    definitions, which would be useful if for example we don't wish to
1547    re-run a source-block every time because it is long-running.
1549 Thoughts?  If no-one objects, I believe I will implement the labeling
1550 of results.
1552 ** DONE extra quotes for nested string
1553 Well R appears to be reading the tables without issue...
1555 these *should* be quoted
1556 #+srcname: ls
1557 #+begin_src sh :results replace
1559 #+end_src
1561 | "COPYING"          |
1562 | "README.markdown"  |
1563 | "block"            |
1564 | "examples.org"     |
1565 | "existing_tools"   |
1566 | "intro.org"        |
1567 | "org-babel"          |
1568 | "rorg.org"         |
1569 | "test-export.html" |
1570 | "test-export.org"  |
1572 #+srcname: test-quotes
1573 #+begin_src ruby :var tab=ls
1574 tab[1][0]
1575 #+end_src
1577 : README.markdown
1579 #+srcname: test-quotes
1580 #+begin_src R :var tab=ls
1581 as.matrix(tab[2,])
1582 #+end_src
1584 : README.markdown
1586 ** DONE simple ruby arrays not working
1588 As an example eval the following.  Adding a line to test
1590 #+srcname: simple-ruby-array
1591 #+begin_src ruby
1592 [3, 4, 5]
1593 #+end_src
1595 #+srcname: ruby-array-test
1596 #+begin_src ruby :var ar = simple-ruby-array
1597 ar.first
1598 #+end_src
1600 ** DONE space trailing language name
1601 fix regexp so it works when there's a space trailing the language name
1603 #+srcname: test-trailing-space
1604 #+begin_src ruby 
1605 :schulte
1606 #+end_src
1608 ** DONE Args out of range error
1609    
1610 The following block resulted in the error below [DED]. It ran without
1611 error directly in the shell.
1612 #+begin_src sh
1613 cd ~/work/genopca
1614 for platf in ill aff ; do
1615     for pop in CEU YRI ASI ; do
1616         rm -f $platf/hapmap-genos-$pop-all $platf/hapmap-rs-all
1617         cat $platf/hapmap-genos-$pop-* > $platf/hapmap-genos-$pop-all
1618         cat $platf/hapmap-rs-* > $platf/hapmap-rs-all
1619     done
1620 done
1621 #+end_src
1622   
1623  executing source block with sh...
1624 finished executing source block
1625 string-equal: Args out of range: "", -1, 0
1627 the error =string-equal: Args out of range: "", -1, 0= looks like what
1628 used to be output when the block returned an empty results string.
1629 This should be fixed in the current version, you should now see the
1630 following message =no result returned by source block=.
1632 ** DONE ruby arrays not recognized as such
1634 Something is wrong in [[file:lisp/org-babel-script.el]] related to the
1635 recognition of ruby arrays as such.
1637 #+begin_src ruby :results replace
1638 [1, 2, 3, 4]
1639 #+end_src
1641 | 1 | 2 | 3 | 4 |
1643 #+begin_src python :results replace
1644 [1, 2, 3, 4]
1645 #+end_src
1647 | 1 | 2 | 3 | 4 |
1650 * Tests
1652 Evaluate all the cells in this table for a comprehensive test of the
1653 org-babel functionality.
1655 *Note*: if you have customized =org-babel-default-header-args= then some
1656 of these tests may fail.
1658 #+TBLNAME: org-babel-tests
1659 | functionality           | block                      | arg |    expected |     results | pass |
1660 |-------------------------+----------------------------+-----+-------------+-------------+------|
1661 | basic evaluation        |                            |     |             |             | pass |
1662 |-------------------------+----------------------------+-----+-------------+-------------+------|
1663 | emacs lisp              | basic-elisp                |     |           5 |           5 | pass |
1664 | shell                   | basic-shell                |     |           6 |           6 | pass |
1665 | ruby                    | basic-ruby                 |     |   org-babel |   org-babel | pass |
1666 | python                  | basic-python               |     | hello world | hello world | pass |
1667 | R                       | basic-R                    |     |          13 |          13 | pass |
1668 |-------------------------+----------------------------+-----+-------------+-------------+------|
1669 | tables                  |                            |     |             |             | pass |
1670 |-------------------------+----------------------------+-----+-------------+-------------+------|
1671 | emacs lisp              | table-elisp                |     |           3 |           3 | pass |
1672 | ruby                    | table-ruby                 |     |       1-2-3 |       1-2-3 | pass |
1673 | python                  | table-python               |     |           5 |           5 | pass |
1674 | R                       | table-R                    |     |         3.5 |         3.5 | pass |
1675 |-------------------------+----------------------------+-----+-------------+-------------+------|
1676 | source block references |                            |     |             |             | pass |
1677 |-------------------------+----------------------------+-----+-------------+-------------+------|
1678 | all languages           | chained-ref-last           |     |       Array |       Array | pass |
1679 |-------------------------+----------------------------+-----+-------------+-------------+------|
1680 | source block functions  |                            |     |             |             | pass |
1681 |-------------------------+----------------------------+-----+-------------+-------------+------|
1682 | emacs lisp              | defun-fibb                 |     |       fibbd |       fibbd | pass |
1683 | run over                | Fibonacci                  |   0 |           1 |           1 | pass |
1684 | a                       | Fibonacci                  |   1 |           1 |           1 | pass |
1685 | variety                 | Fibonacci                  |   2 |           2 |           2 | pass |
1686 | of                      | Fibonacci                  |   3 |           3 |           3 | pass |
1687 | different               | Fibonacci                  |   4 |           5 |           5 | pass |
1688 | arguments               | Fibonacci                  |   5 |           8 |           8 | pass |
1689 |-------------------------+----------------------------+-----+-------------+-------------+------|
1690 | bugs and tasks          |                            |     |             |             | pass |
1691 |-------------------------+----------------------------+-----+-------------+-------------+------|
1692 | simple ruby arrays      | ruby-array-test            |     |           3 |           3 | pass |
1693 | R number evaluation     | bug-R-number-evaluation    |     |           2 |           2 | pass |
1694 | multi-line ruby blocks  | multi-line-ruby-test       |     |           2 |           2 | pass |
1695 | forcing vector results  | test-forced-vector-results |     |       Array |       Array | pass |
1696 #+TBLFM: $5='(if (= (length $3) 1) (progn (message (format "running %S" '(sbe $2 (n $3)))) (sbe $2 (n $3))) (sbe $2))::$6='(if (string= $4 $5) "pass" (format "expected %S but was %S" $4 $5))
1698 ** basic tests
1700 #+srcname: basic-elisp
1701 #+begin_src emacs-lisp :results silent
1702 (+ 1 4)
1703 #+end_src
1705 #+srcname: basic-shell
1706 #+begin_src sh :results silent
1707 expr 1 + 5
1708 #+end_src
1711 #+srcname: basic-ruby
1712 #+begin_src ruby :results silent
1713 "org-babel"
1714 #+end_src
1716 #+srcname: basic-python
1717 #+begin_src python :results silent
1718 'hello world'
1719 #+end_src
1721 #+srcname: basic-R
1722 #+begin_src R :results silent
1723 b <- 9
1724 b + 4
1725 #+end_src
1727 ** read tables
1729 #+tblname: test-table
1730 | 1 | 2 | 3 |
1731 | 4 | 5 | 6 |
1733 #+srcname: table-elisp
1734 #+begin_src emacs-lisp :results silent :var table=test-table
1735 (length (car table))
1736 #+end_src
1738 #+srcname: table-ruby
1739 #+begin_src ruby :results silent :var table=test-table
1740 table.first.join("-")
1741 #+end_src
1743 #+srcname: table-python
1744 #+begin_src python :var table=test-table
1745 table[1][1]
1746 #+end_src
1748 #+srcname: table-R
1749 #+begin_src R :var table=test-table
1750 mean(mean(table))
1751 #+end_src
1753 ** references
1755 Lets pass a references through all of our languages...
1757 Lets start by reversing the table from the previous examples
1759 #+srcname: chained-ref-first
1760 #+begin_src python :var table = test-table
1761 table.reverse()
1762 table
1763 #+end_src
1765 #+resname: chained-ref-first
1766 | 4 | 5 | 6 |
1767 | 1 | 2 | 3 |
1769 Take the first part of the list
1771 #+srcname: chained-ref-second
1772 #+begin_src R :var table = chained-ref-first
1773 table[1]
1774 #+end_src
1776 #+resname: chained-ref-second
1777 | 4 |
1778 | 1 |
1780 Turn the numbers into string
1782 #+srcname: chained-ref-third
1783 #+begin_src emacs-lisp :var table = chained-ref-second
1784 (mapcar (lambda (el) (format "%S" el)) table)
1785 #+end_src
1787 #+resname: chained-ref-third
1788 | "(4)" | "(1)" |
1790 and Check that it is still a list
1792 #+srcname: chained-ref-last
1793 #+begin_src ruby :var table=chained-ref-third
1794 table.class.name
1795 #+end_src
1798 ** source blocks as functions
1800 #+srcname: defun-fibb
1801 #+begin_src emacs-lisp :results silent
1802 (defun fibbd (n) (if (< n 2) 1 (+ (fibbd (- n 1)) (fibbd (- n 2)))))
1803 #+end_src
1805 #+srcname: fibonacci
1806 #+begin_src emacs-lisp :results silent :var n=7
1807 (fibbd n)
1808 #+end_src
1810 ** sbe tests
1811 Testing the insertion of results into org-mode tables.
1813 #+srcname: multi-line-output
1814 #+begin_src ruby :results replace
1815 "the first line ends here
1818      and this is the second one
1820 even a third"
1821 #+end_src
1823 #+resname:
1824 : the first line ends here
1825 :            and this is the second one
1826 :       return even a third
1828 #+srcname: multi-line-error
1829 #+begin_src ruby :results replace
1830 raise "oh nooooooooooo"
1831 #+end_src
1833 #+resname:
1834 : -:5: warning: parenthesize argument(s) for future version
1835 : -:5:in `main': oh nooooooooooo (RuntimeError)
1836 :       from -:8
1838 | the first line ends here... | -:5: warning: parenthesize argument(s) for future version... |
1839 #+TBLFM: $1='(sbe "multi-line-output")::$2='(sbe "multi-line-error")
1841 ** forcing results types tests
1843 #+srcname: test-trivial-vector
1844 #+begin_src emacs-lisp :results vector silent
1846 #+end_src
1848 #+srcname: test-forced-vector-results
1849 #+begin_src ruby :var triv=test-trivial-vector :results silent
1850 triv.class.name
1851 #+end_src
1854 * Sandbox
1855   :PROPERTIES:
1856   :CUSTOM_ID: sandbox
1857   :END:
1858 To run these examples evaluate [[file:lisp/org-babel-init.el][org-babel-init.el]]
1860 ** org-babel.el beginning functionality
1862 #+begin_src sh  :results replace
1863 date
1864 #+end_src
1866 : Thu May 14 18:52:25 EDT 2009
1868 #+begin_src ruby
1869 Time.now
1870 #+end_src
1872 : Thu May 14 18:59:09 -0400 2009
1874 #+begin_src python
1875 "Hello World"
1876 #+end_src
1878 : Hello World
1881 ** org-babel-R
1883 #+begin_src R :results replace
1884 a <- 9
1885 b <- 16
1886 a + b
1887 #+end_src
1889 : 25
1891 #+begin_src R
1892 hist(rgamma(20,3,3))
1893 #+end_src
1896 ** org-babel plays with tables
1897 Alright, this should demonstrate both the ability of org-babel to read
1898 tables into a lisp source code block, and to then convert the results
1899 of the source code block into an org table.  It's using the classic
1900 "lisp is elegant" demonstration transpose function.  To try this
1901 out...
1903 1. evaluate [[file:lisp/org-babel-init.el]] to load org-babel and friends
1904 2. evaluate the transpose definition =\C-c\C-c= on the beginning of
1905    the source block
1906 3. evaluate the next source code block, this should read in the table
1907    because of the =:var table=previous=, then transpose the table, and
1908    finally it should insert the transposed table into the buffer
1909    immediately following the block
1911 *** Emacs lisp
1913 #+begin_src emacs-lisp :results silent
1914 (defun transpose (table)
1915   (apply #'mapcar* #'list table))
1916 #+end_src
1919 #+TBLNAME: sandbox
1920 | 1 |       2 | 3 |
1921 | 4 | schulte | 6 |
1923 #+begin_src emacs-lisp :var table=sandbox :results replace
1924 (transpose table)
1925 #+end_src
1928 #+begin_src emacs-lisp
1929 '(1 2 3 4 5)
1930 #+end_src
1932 | 1 | 2 | 3 | 4 | 5 |
1934 *** Ruby and Python
1936 #+begin_src ruby :var table=sandbox :results replace
1937 table.first.join(" - ")
1938 #+end_src
1940 : "1 - 2 - 3"
1942 #+begin_src python :var table=sandbox :results replace
1943 table[0]
1944 #+end_src
1946 | 1 | 2 | 3 |
1948 #+begin_src ruby :var table=sandbox :results replace
1949 table
1950 #+end_src
1952 | 1 |         2 | 3 |
1953 | 4 | "schulte" | 6 |
1955 #+begin_src python :var table=sandbox :results replace
1956 len(table)
1957 #+end_src
1959 : 2
1961 | "__add__" | "__class__" | "__contains__" | "__delattr__" | "__delitem__" | "__delslice__" | "__doc__" | "__eq__" | "__format__" | "__ge__" | "__getattribute__" | "__getitem__" | "__getslice__" | "__gt__" | "__hash__" | "__iadd__" | "__imul__" | "__init__" | "__iter__" | "__le__" | "__len__" | "__lt__" | "__mul__" | "__ne__" | "__new__" | "__reduce__" | "__reduce_ex__" | "__repr__" | "__reversed__" | "__rmul__" | "__setattr__" | "__setitem__" | "__setslice__" | "__sizeof__" | "__str__" | "__subclasshook__" | "append" | "count" | "extend" | "index" | "insert" | "pop" | "remove" | "reverse" | "sort" |
1963 *** (sandbox table) R
1965 #+TBLNAME: sandbox_r
1966 | 1 |       2 | 3 |
1967 | 4 | schulte | 6 |
1969 #+begin_src R :results replace
1970 x <- c(rnorm(10, mean=-3, sd=1), rnorm(10, mean=3, sd=1))
1972 #+end_src
1974 | -3.35473133869346 |
1975 |    -2.45714878661 |
1976 | -3.32819924928633 |
1977 | -2.97310212756194 |
1978 | -2.09640758369576 |
1979 | -5.06054014378736 |
1980 | -2.20713700711221 |
1981 | -1.37618039712037 |
1982 | -1.95839385821742 |
1983 | -3.90407396475502 |
1984 |  2.51168071590226 |
1985 |  3.96753011570494 |
1986 |  3.31793212627865 |
1987 |  1.99829753972341 |
1988 |  4.00403686419829 |
1989 |  4.63723764452927 |
1990 |  3.94636744261313 |
1991 |  3.58355906547775 |
1992 |  3.01563442274226 |
1993 |   1.7634976849927 |
1995 #+begin_src R var tabel=sandbox_r :results replace
1996 tabel
1997 #+end_src
1999 | 1 |         2 | 3 |
2000 | 4 | "schulte" | 6 |
2002 *** shell
2003 Now shell commands are converted to tables using =org-table-import=
2004 and if these tables are non-trivial (i.e. have multiple elements) then
2005 they are imported as org-mode tables...
2007 #+begin_src sh :results replace
2008 ls -l
2009 #+end_src
2011 | "total"      | 208 | ""    | ""    |    "" |   "" | "" | ""                |
2012 | "-rw-r--r--" |   1 | "dan" | "dan" |    57 | 2009 | 15 | "block"           |
2013 | "-rw-r--r--" |   1 | "dan" | "dan" | 35147 | 2009 | 15 | "COPYING"         |
2014 | "-rw-r--r--" |   1 | "dan" | "dan" |   722 | 2009 | 18 | "examples.org"    |
2015 | "drwxr-xr-x" |   4 | "dan" | "dan" |  4096 | 2009 | 19 | "existing_tools"  |
2016 | "-rw-r--r--" |   1 | "dan" | "dan" |  2207 | 2009 | 14 | "intro.org"       |
2017 | "drwxr-xr-x" |   2 | "dan" | "dan" |  4096 | 2009 | 18 | "org-babel"         |
2018 | "-rw-r--r--" |   1 | "dan" | "dan" |   277 | 2009 | 20 | "README.markdown" |
2019 | "-rw-r--r--" |   1 | "dan" | "dan" | 11837 | 2009 | 18 | "rorg.html"       |
2020 | "-rw-r--r--" |   1 | "dan" | "dan" | 61829 | 2009 | 19 | "#rorg.org#"      |
2021 | "-rw-r--r--" |   1 | "dan" | "dan" | 60190 | 2009 | 19 | "rorg.org"        |
2022 | "-rw-r--r--" |   1 | "dan" | "dan" |   972 | 2009 | 11 | "test-export.org" |
2025 ** silent evaluation
2027 #+begin_src ruby
2028 :im_the_results
2029 #+end_src
2031 : :im_the_results
2033 #+begin_src ruby :results silent
2034 :im_the_results
2035 #+end_src
2037 #+begin_src ruby :results replace
2038 :im_the_results_
2039 #+end_src
2041 : :im_the_results_
2044 ** (sandbox) referencing other source blocks
2045 Doing this in emacs-lisp first because it's trivial to convert
2046 emacs-lisp results to and from emacs-lisp.
2048 *** emacs lisp source reference
2049 This first example performs a calculation in the first source block
2050 named =top=, the results of this calculation are then saved into the
2051 variable =first= by the header argument =:var first=top=, and it is
2052 used in the calculations of the second source block.
2054 #+SRCNAME: top
2055 #+begin_src emacs-lisp
2056 (+ 4 2)
2057 #+end_src
2059 #+begin_src emacs-lisp :var first=top :results replace
2060 (* first 3)
2061 #+end_src
2063 : 18
2065 This example is the same as the previous only the variable being
2066 passed through is a table rather than a number.
2068 #+begin_src emacs-lisp :results silent
2069 (defun transpose (table)
2070   (apply #'mapcar* #'list table))
2071 #+end_src
2073 #+TBLNAME: top_table
2074 | 1 |       2 | 3 |
2075 | 4 | schulte | 6 |
2077 #+SRCNAME: second_src_example
2078 #+begin_src emacs-lisp :var table=top_table
2079 (transpose table)
2080 #+end_src
2082 #+begin_src emacs-lisp :var table=second_src_example :results replace
2083 (transpose table)
2084 #+end_src
2086 | 1 |         2 | 3 |
2087 | 4 | "schulte" | 6 |
2088 *** ruby python
2089 Now working for ruby
2091 #+srcname: start
2092 #+begin_src ruby
2094 #+end_src
2096 #+begin_src ruby :var other=start :results replace
2097 2 * other
2098 #+end_src
2100 and for python
2102 #+SRCNAME: start_two
2103 #+begin_src python
2105 #+end_src
2107 #+begin_src python :var another=start_two :results replace
2108 another*3
2109 #+end_src
2111 *** mixed languages
2112 Since all variables are converted into Emacs Lisp it is no problem to
2113 reference variables specified in another language.
2115 #+SRCNAME: ruby-block
2116 #+begin_src ruby
2118 #+end_src
2120 #+SRCNAME: lisp_block
2121 #+begin_src emacs-lisp :var ruby-variable=ruby-block
2122 (* ruby-variable 8)
2123 #+end_src
2125 #+begin_src python :var lisp_var=lisp_block
2126 lisp_var + 4
2127 #+end_src
2129 : 20
2131 *** R
2133 #+srcname: first_r
2134 #+begin_src R :results replace
2135 a <- 9
2137 #+end_src
2139 : 9
2141 #+begin_src R :var other=first_r :results replace
2142 other + 2
2143 #+end_src
2145 : 11
2148 ** (sandbox) selective export
2150 For exportation tests and examples see (including exportation of
2151 inline source code blocks) [[file:test-export.org]]
2154 ** (sandbox) source blocks as functions
2156 #+srcname: default
2157 #+begin_src emacs-lisp :results silent
2159 #+end_src
2161 #+srcname: triple
2162 #+begin_src emacs-lisp :var n=default :results replace
2163 (* 3 n)
2164 #+end_src
2166 : 15
2168 #+begin_src emacs-lisp :var result=triple(n=3, m=98) :results replace
2169 result
2170 #+end_src
2172 : 294
2174 The following just demonstrates the ability to assign variables to
2175 literal values, which was not implemented until recently.
2177 #+begin_src ruby :var num="eric" :results replace
2178 num+" schulte "
2179 #+end_src
2181 : "eric schulte "
2184 ** (sandbox) inline source blocks
2186 This is an inline source code block src_ruby{1 + 6}.  And another
2187 source block with text output src_emacs-lisp{"eric"}.
2189 This is an inline source code block with header
2190 arguments.  src_ruby[:var n=fibbd( n = 0 )]{n}
2193 ** (sandbox) integration w/org tables
2195 #+begin_src emacs-lisp :results silent
2196 (defun fibbd (n) (if (< n 2) 1 (+ (fibbd (- n 1)) (fibbd (- n 2)))))
2197 #+end_src
2199 #+srcname: fibbd
2200 #+begin_src emacs-lisp :var n=4 :results silent
2201 (fibbd n)
2202 #+end_src
2204 #+begin_src emacs-lisp :results silent
2205 (mapcar #'fibbd '(0 1 2 3 4 5 6 7 8))
2206 #+end_src
2208 Something is not working here.  The function `sbe ' works fine when
2209 called from outside of the table (see the source block below), but
2210 produces an error when called from inside the table.  I think there
2211 must be some narrowing going on during intra-table emacs-lisp
2212 evaluation.
2214 | original | fibbd |
2215 |----------+-------|
2216 |        0 |     1 |
2217 |        1 |     1 |
2218 |        2 |     2 |
2219 |        3 |     3 |
2220 |        4 |     5 |
2221 |        5 |     8 |
2222 |        6 |    13 |
2223 |        7 |    21 |
2224 |        8 |    34 |
2225 |        9 |    55 |
2226 #+TBLFM: $2='(sbe "fibbd" (n $1))
2228 silent-result
2230 #+begin_src emacs-lisp :results silent
2231 (sbe 'fibbd (n "8"))
2232 #+end_src
2235 * Buffer Dictionary
2236  LocalWords:  DBlocks dblocks org-babel el eric fontification