org-babel-R.el 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224
  1. ;;; org-babel-R.el --- org-babel functions for R code evaluation
  2. ;; Copyright (C) 2009 Eric Schulte
  3. ;; Author: Eric Schulte
  4. ;; Keywords: literate programming, reproducible research, R, statistics
  5. ;; Homepage: http://orgmode.org
  6. ;; Version: 0.01
  7. ;;; License:
  8. ;; This program is free software; you can redistribute it and/or modify
  9. ;; it under the terms of the GNU General Public License as published by
  10. ;; the Free Software Foundation; either version 3, or (at your option)
  11. ;; any later version.
  12. ;;
  13. ;; This program is distributed in the hope that it will be useful,
  14. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. ;; GNU General Public License for more details.
  17. ;;
  18. ;; You should have received a copy of the GNU General Public License
  19. ;; along with GNU Emacs; see the file COPYING. If not, write to the
  20. ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
  21. ;; Boston, MA 02110-1301, USA.
  22. ;;; Commentary:
  23. ;; Org-Babel support for evaluating R code
  24. ;;; Code:
  25. (require 'org-babel)
  26. (org-babel-add-interpreter "R")
  27. (add-to-list 'org-babel-tangle-langs '("R" "R" "#!/usr/bin/env Rscript"))
  28. (defun org-babel-execute:R (body params)
  29. "Execute a block of R code with org-babel. This function is
  30. called by `org-babel-execute-src-block'."
  31. (message "executing R source code block...")
  32. (save-excursion
  33. (let* ((processed-params (org-babel-process-params params))
  34. (result-type (fourth processed-params))
  35. (session (org-babel-R-initiate-session (first processed-params) params))
  36. (vars (second processed-params))
  37. (column-names-p (and (cdr (assoc :colnames params))
  38. (string= "yes" (cdr (assoc :colnames params)))))
  39. (row-names-p (and (cdr (assoc :rownames params))
  40. (string= "yes" (cdr (assoc :rownames params)))))
  41. (out-file (cdr (assoc :file params)))
  42. (augmented-body
  43. (concat
  44. (if out-file (concat (org-babel-R-construct-graphics-device-call out-file params) "\n") "")
  45. (mapconcat ;; define any variables
  46. (lambda (pair) (org-babel-R-assign-elisp (car pair) (cdr pair))) vars "\n")
  47. "\n" body "\n" (if out-file "dev.off()\n" "")))
  48. (result (org-babel-R-evaluate session augmented-body result-type column-names-p row-names-p)))
  49. (or out-file result))))
  50. (defun org-babel-prep-session:R (session params)
  51. "Prepare SESSION according to the header arguments specified in PARAMS."
  52. (let* ((session (org-babel-R-initiate-session session params))
  53. (vars (org-babel-ref-variables params))
  54. (var-lines
  55. (mapcar
  56. (lambda (pair) (org-babel-R-assign-elisp (car pair) (cdr pair))) vars)))
  57. (org-babel-comint-in-buffer session
  58. (mapc (lambda (var)
  59. (move-end-of-line 1) (insert var) (comint-send-input nil t)
  60. (org-babel-comint-wait-for-output session)) var-lines))
  61. session))
  62. (defun org-babel-load-session:R (session body params)
  63. "Load BODY into SESSION."
  64. (save-window-excursion
  65. (let ((buffer (org-babel-prep-session:R session params)))
  66. (with-current-buffer buffer
  67. (goto-char (process-mark (get-buffer-process (current-buffer))))
  68. (insert (org-babel-chomp body)))
  69. buffer)))
  70. ;; helper functions
  71. (defun org-babel-R-quote-tsv-field (s)
  72. "Quote field S for export to R."
  73. (if (stringp s)
  74. (concat "\"" (mapconcat 'identity (split-string s "\"") "\"\"") "\"")
  75. (format "%S" s)))
  76. (defun org-babel-R-assign-elisp (name value)
  77. "Construct R code assigning the elisp VALUE to a variable named NAME."
  78. (if (listp value)
  79. (let ((transition-file (make-temp-file "org-babel-R-import")))
  80. ;; ensure VALUE has an orgtbl structure (depth of at least 2)
  81. (unless (listp (car value)) (setq value (list value)))
  82. (with-temp-file (org-babel-maybe-remote-file transition-file)
  83. (insert (orgtbl-to-tsv value '(:fmt org-babel-R-quote-tsv-field)))
  84. (insert "\n"))
  85. (format "%s <- read.table(\"%s\", header=%s, sep=\"\\t\", as.is=TRUE)"
  86. name transition-file (if (eq (second value) 'hline) "TRUE" "FALSE")))
  87. (format "%s <- %s" name (org-babel-R-quote-tsv-field value))))
  88. (defun org-babel-R-initiate-session (session params)
  89. "If there is not a current R process then create one."
  90. (unless (string= session "none")
  91. (let ((session (or session "*R*"))
  92. (ess-ask-for-ess-directory (not (cdr (assoc :dir params)))))
  93. (if (org-babel-comint-buffer-livep session)
  94. session
  95. (save-window-excursion
  96. (R)
  97. (rename-buffer (if (bufferp session) (buffer-name session)
  98. (if (stringp session) session (buffer-name)))) (current-buffer))))))
  99. (defun org-babel-R-construct-graphics-device-call (out-file params)
  100. "Construct the call to the graphics device"
  101. (let ((devices
  102. '((:bmp . "bmp")
  103. (:jpg . "jpeg")
  104. (:jpeg . "jpeg")
  105. (:tiff . "tiff")
  106. (:png . "png")
  107. (:svg . "svg")
  108. (:pdf . "pdf")
  109. (:ps . "postscript")
  110. (:postscript . "postscript")))
  111. (allowed-args '(:width :height :bg :units :pointsize
  112. :antialias :quality :compression :res :type
  113. :family :title :fonts :version :paper :encoding
  114. :pagecentre :colormodel :useDingbats :horizontal))
  115. (device (and (string-match ".+\\.\\([^.]+\\)" out-file) (match-string 1 out-file)))
  116. (extra-args (cdr (assq :R-dev-args params))) filearg args)
  117. (setq device (or (and device (cdr (assq (intern (concat ":" device)) devices))) "png"))
  118. (setq filearg (if (member device '("pdf" "postscript" "svg")) "file" "filename"))
  119. (setq args (mapconcat (lambda (pair)
  120. (if (member (car pair) allowed-args)
  121. (format ",%s=%s" (substring (symbol-name (car pair)) 1) (cdr pair)) ""))
  122. params ""))
  123. (format "%s(%s=\"%s\"%s%s%s)\n" device filearg out-file args (if extra-args "," "") (or extra-args ""))))
  124. (defvar org-babel-R-eoe-indicator "'org_babel_R_eoe'")
  125. (defvar org-babel-R-eoe-output "[1] \"org_babel_R_eoe\"")
  126. (defvar org-babel-R-wrapper-method "main <- function ()\n{\n%s\n}
  127. write.table(main(), file=\"%s\", sep=\"\\t\", na=\"nil\",row.names=%s, col.names=%s, quote=FALSE)")
  128. (defun org-babel-R-evaluate (session body result-type column-names-p row-names-p)
  129. "Pass BODY to the R process in SESSION. If RESULT-TYPE equals
  130. 'output then return a list of the outputs of the statements in
  131. BODY, if RESULT-TYPE equals 'value then return the value of the
  132. last statement in BODY, as elisp."
  133. (if (not session)
  134. ;; external process evaluation
  135. (case result-type
  136. (output
  137. (with-temp-buffer
  138. (insert body)
  139. (org-babel-shell-command-on-region (point-min) (point-max) "R --slave --no-save" 'current-buffer 'replace)
  140. (buffer-string)))
  141. (value
  142. (let* ((tmp-file (make-temp-file "R-out-functional-results")) exit-code
  143. (stderr
  144. (with-temp-buffer
  145. (insert (format org-babel-R-wrapper-method
  146. body tmp-file (if row-names-p "TRUE" "FALSE") (if column-names-p (if row-names-p "NA" "TRUE") "FALSE")))
  147. (setq exit-code (org-babel-shell-command-on-region
  148. (point-min) (point-max) "R --no-save" nil 'replace (current-buffer)))
  149. (buffer-string))))
  150. (if (> exit-code 0) (org-babel-error-notify exit-code stderr))
  151. (org-babel-R-process-value-result
  152. (org-babel-import-elisp-from-file (org-babel-maybe-remote-file tmp-file))
  153. column-names-p))))
  154. ;; comint session evaluation
  155. (org-babel-comint-in-buffer session
  156. (let* ((tmp-file (make-temp-file "org-babel-R"))
  157. (full-body
  158. (case result-type
  159. (value
  160. (mapconcat #'org-babel-chomp (list body
  161. (format "write.table(.Last.value, file=\"%s\", sep=\"\\t\", na=\"nil\",row.names=%s, col.names=%s, quote=FALSE)" tmp-file (if row-names-p "TRUE" "FALSE") (if column-names-p (if row-names-p "NA" "TRUE") "FALSE"))
  162. org-babel-R-eoe-indicator) "\n"))
  163. (output
  164. (mapconcat #'org-babel-chomp (list body org-babel-R-eoe-indicator) "\n"))))
  165. (raw (org-babel-comint-with-output session org-babel-R-eoe-output nil
  166. (insert full-body) (inferior-ess-send-input)))
  167. (comint-prompt-regexp
  168. (concat "^\\("
  169. inferior-ess-primary-prompt
  170. "\\|"
  171. inferior-ess-secondary-prompt
  172. "\\)*"))
  173. broke results)
  174. (case result-type
  175. (value (org-babel-R-process-value-result
  176. (org-babel-import-elisp-from-file
  177. (org-babel-maybe-remote-file tmp-file))
  178. column-names-p))
  179. (output
  180. (flet ((extractor
  181. (el)
  182. (if (or broke
  183. (and (string-match (regexp-quote org-babel-R-eoe-output) el)
  184. (setq broke t)))
  185. nil
  186. (if (= (length el) 0)
  187. nil
  188. (if (string-match comint-prompt-regexp el)
  189. (substring el (match-end 0))
  190. el)))))
  191. (mapconcat
  192. #'identity
  193. (delete nil (mapcar #'extractor (mapcar #'org-babel-chomp raw))) "\n"))))))))
  194. (defun org-babel-R-process-value-result (result column-names-p)
  195. "R-specific processing of return value prior to return to org-babel.
  196. Currently, insert hline if column names in output have been requested."
  197. (if column-names-p
  198. (cons (car result) (cons 'hline (cdr result)))
  199. result))
  200. (provide 'org-babel-R)
  201. ;;; org-babel-R.el ends here