Trivial: removing whitespace in org-babel.org; passing most tests now.
[org-mode.git] / library-of-babel.org
blobc219b69a46e3389696720c7c0273795726a434b4
1 #+title: The Library of Babel --- off-the-shelf functions for data analysis and plotting using org-babel
2 #+SEQ_TODO: TODO PROPOSED | DONE DEFERRED REJECTED
3 #+OPTIONS: H:3 num:nil toc:t
4 #+STARTUP: odd hideblocks
6 [[http://downlode.org/Etext/library_of_babel.html][Full text of the Borges short story]]
8 * Plotting code
9   Plot column 2 (y axis) against column 1 (x axis). Columns 3 and beyond, if present, are ignored.
11 #+srcname: R-plot(data=R-plot-example-data)
12 #+begin_src R :session *R*
13 plot(data)
14 "R plot complete"
15 #+end_src
17 #+tblname: R-plot-example-data
18 | 1 |  2 |
19 | 2 |  4 |
20 | 3 |  9 |
21 | 4 | 16 |
22 | 5 | 25 |
24 #+lob: R-plot(data=R-plot-example-data)
26 #+resname: R-plot(data=R-plot-example-data)
27 : R plot complete
29 * Etc
30 #+srcname: python-identity(a=1)
31 #+begin_src python
33 #+end_src
35 #+srcname: python-add(a=1, b=2)
36 #+begin_src python
37 a + b
38 #+end_src