changes to Org-babel documentation
[rgr-org-mode.git] / library-of-babel.org
blobac791d9e45f3218a41d78989e390fc479fa640e6
1 #+title:    The Library of Babel
2 #+SEQ_TODO: TODO PROPOSED | DONE DEFERRED REJECTED
3 #+OPTIONS:  H:3 num:nil toc:2 \n:nil @:t ::t |:t ^:t -:t f:t *:t TeX:t LaTeX:t skip:nil d:(HIDE) tags:not-in-toc
4 #+STARTUP:  odd hideblocks
6 #+begin_html 
7   <div id="subtitle">
8     <p>
9       off-the-shelf functions for data analysis and plotting using <a href="org-babel-worg.html">org-babel</a><br/>
10       <a href="http://downlode.org/Etext/library_of_babel.html">Full text of the Borges short story</a>
11     </p>
12   </div>
13   <div id="logo">
14     <p>
15       <img src="images/library-of-babel.png"  alt="images/tower-of-babel.png" />
16       <div id="attr">
17         from <a href="http://www.poetryfoundation.org/harriet/2008/01/random-poetry-02/">poetryfoundation.org</a>
18       </div>
19     </p>  
20   </div>
21 #+end_html
23 * Introduction
24   The Library of Babel is an extensible collection of ready-made and
25   easily-shortcut-callable source-code blocks for handling common
26   tasks.  Org-babel comes pre-populated with the source-code blocks
27   located in this file. It is possible to add source-code blocks from
28   any org-mode file to the library by calling
30 #+srcname: add-file-to-lob
31 #+begin_src emacs-lisp 
32 (org-babel-lob-ingest "path/to/file.org")
33 #+end_src
35 * Plotting code
37 ** R
38   Plot column 2 (y axis) against column 1 (x axis). Columns 3 and beyond, if present, are ignored.
40 #+srcname: R-plot(data=R-plot-example-data)
41 #+begin_src R :session *R*
42 plot(data)
43 #+end_src
45 #+tblname: R-plot-example-data
46 | 1 |  2 |
47 | 2 |  4 |
48 | 3 |  9 |
49 | 4 | 16 |
50 | 5 | 25 |
52 #+lob: R-plot(data=R-plot-example-data)
54 #+resname: R-plot(data=R-plot-example-data)
55 : nil
57 ** Gnuplot
59 * Misc
60 #+srcname: python-identity(a=1)
61 #+begin_src python
63 #+end_src
65 #+srcname: python-add(a=1, b=2)
66 #+begin_src python
67 a + b
68 #+end_src