org-contribute.org: Add Utkarsh Singh as a TINYCHANGE contributor
[worg.git] / org-contrib / babel / test-for-how-to-use-Org-Babel-for-R.org
blob69f2cd3a04db1ac3dc4d3438107d5cf1308ca304
1 #+TITLE: Test
2 #+AUTHOR: Your Name
3 #+EMAIL: your-email@server.com
4 #+PROPERTY: session *R* 
5 #+PROPERTY: cache yes 
6 #+PROPERTY: results graphics 
7 #+PROPERTY: exports both 
8 #+PROPERTY: tangle yes 
10 # This file is released by its authors and contributors under the GNU
11 # Free Documentation license v1.3 or later, code examples are released
12 # under the GNU General Public License v3 or later.
14 * Example of Org-Babel for R Literate Programming
15 ** R text output
16 A simple summary. 
17 #+begin_src R 
18   x <- rnorm(10)
19   summary(x)
20 #+end_src
22 ** R graphics output
23 Note we use the object =x= generated in previous code block, thanks to
24 the header option =:session *R*=.  The output graphics file is
25 =a.png=. 
27 #+begin_src R  :file a.png
28   y <- rnorm(10)
29   plot(x, y)
30 #+end_src
32 Same plot with larger dimension:
34 #+begin_src R  :file b.png :width 800 :height 800
35   plot(x, y)
36 #+end_src