org-babel-R.el 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240
  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-expand-body:R (body params &optional processed-params)
  29. (let* ((processed-params (or processed-params
  30. (org-babel-process-params params)))
  31. (vars (mapcar (lambda (i) (cons (car (nth i (second processed-params)))
  32. (org-babel-reassemble-table
  33. (cdr (nth i (second processed-params)))
  34. (cdr (nth i (fifth processed-params)))
  35. (cdr (nth i (sixth processed-params))))))
  36. (number-sequence 0 (1- (length (second processed-params))))))
  37. (out-file (cdr (assoc :file params))))
  38. (concat
  39. (if out-file (concat (org-babel-R-construct-graphics-device-call out-file params) "\n") "")
  40. (mapconcat ;; define any variables
  41. (lambda (pair) (org-babel-R-assign-elisp (car pair) (cdr pair))) vars "\n")
  42. "\n" body "\n" (if out-file "dev.off()\n" ""))))
  43. (defun org-babel-execute:R (body params)
  44. "Execute a block of R code with org-babel. This function is
  45. called by `org-babel-execute-src-block'."
  46. (message "executing R source code block...")
  47. (save-excursion
  48. (let* ((processed-params (org-babel-process-params params))
  49. (result-type (fourth processed-params))
  50. (session (org-babel-R-initiate-session (first processed-params) params))
  51. (colnames-p (and (cdr (assoc :colnames params))
  52. (string= "yes" (cdr (assoc :colnames params)))))
  53. (rownames-p (and (cdr (assoc :rownames params))
  54. (string= "yes" (cdr (assoc :rownames params)))))
  55. (out-file (cdr (assoc :file params)))
  56. (full-body (org-babel-expand-body:R body params processed-params))
  57. (result (org-babel-R-evaluate session full-body result-type column-names-p)))
  58. (or out-file result))))
  59. (defun org-babel-prep-session:R (session params)
  60. "Prepare SESSION according to the header arguments specified in PARAMS."
  61. (let* ((session (org-babel-R-initiate-session session params))
  62. (vars (org-babel-ref-variables params))
  63. (var-lines
  64. (mapcar
  65. (lambda (pair) (org-babel-R-assign-elisp
  66. (car pair) (cdr pair)
  67. (equal (cdr (assoc :colnames params)) "yes")
  68. (equal (cdr (assoc :rownames params)) "yes")))
  69. vars)))
  70. (org-babel-comint-in-buffer session
  71. (mapc (lambda (var)
  72. (move-end-of-line 1) (insert var) (comint-send-input nil t)
  73. (org-babel-comint-wait-for-output session)) var-lines))
  74. session))
  75. (defun org-babel-load-session:R (session body params)
  76. "Load BODY into SESSION."
  77. (save-window-excursion
  78. (let ((buffer (org-babel-prep-session:R session params)))
  79. (with-current-buffer buffer
  80. (goto-char (process-mark (get-buffer-process (current-buffer))))
  81. (insert (org-babel-chomp body)))
  82. buffer)))
  83. ;; helper functions
  84. (defun org-babel-R-quote-tsv-field (s)
  85. "Quote field S for export to R."
  86. (if (stringp s)
  87. (concat "\"" (mapconcat 'identity (split-string s "\"") "\"\"") "\"")
  88. (format "%S" s)))
  89. (defun org-babel-R-assign-elisp (name value colnames-p rownames-p)
  90. "Construct R code assigning the elisp VALUE to a variable named NAME."
  91. (if (listp value)
  92. (let ((transition-file (make-temp-file "org-babel-R-import")))
  93. ;; ensure VALUE has an orgtbl structure (depth of at least 2)
  94. (unless (listp (car value)) (setq value (list value)))
  95. (with-temp-file (org-babel-maybe-remote-file transition-file)
  96. (insert (orgtbl-to-tsv value '(:fmt org-babel-R-quote-tsv-field)))
  97. (insert "\n"))
  98. (format "%s <- read.table(\"%s\", header=%s, row.names=%s, sep=\"\\t\", as.is=TRUE)"
  99. name transition-file
  100. (if (and (eq (second value) 'hline) colnames-p) "TRUE" "FALSE")
  101. (if rownames-p "1" "NULL")))
  102. (format "%s <- %s" name (org-babel-R-quote-tsv-field value))))
  103. (defun org-babel-R-initiate-session (session params)
  104. "If there is not a current R process then create one."
  105. (unless (string= session "none")
  106. (let ((session (or session "*R*"))
  107. (ess-ask-for-ess-directory (not (cdr (assoc :dir params)))))
  108. (if (org-babel-comint-buffer-livep session)
  109. session
  110. (save-window-excursion
  111. (R)
  112. (rename-buffer (if (bufferp session) (buffer-name session)
  113. (if (stringp session) session (buffer-name)))) (current-buffer))))))
  114. (defun org-babel-R-construct-graphics-device-call (out-file params)
  115. "Construct the call to the graphics device"
  116. (let ((devices
  117. '((:bmp . "bmp")
  118. (:jpg . "jpeg")
  119. (:jpeg . "jpeg")
  120. (:tiff . "tiff")
  121. (:png . "png")
  122. (:svg . "svg")
  123. (:pdf . "pdf")
  124. (:ps . "postscript")
  125. (:postscript . "postscript")))
  126. (allowed-args '(:width :height :bg :units :pointsize
  127. :antialias :quality :compression :res :type
  128. :family :title :fonts :version :paper :encoding
  129. :pagecentre :colormodel :useDingbats :horizontal))
  130. (device (and (string-match ".+\\.\\([^.]+\\)" out-file) (match-string 1 out-file)))
  131. (extra-args (cdr (assq :R-dev-args params))) filearg args)
  132. (setq device (or (and device (cdr (assq (intern (concat ":" device)) devices))) "png"))
  133. (setq filearg (if (member device '("pdf" "postscript" "svg")) "file" "filename"))
  134. (setq args (mapconcat (lambda (pair)
  135. (if (member (car pair) allowed-args)
  136. (format ",%s=%s" (substring (symbol-name (car pair)) 1) (cdr pair)) ""))
  137. params ""))
  138. (format "%s(%s=\"%s\"%s%s%s)\n" device filearg out-file args (if extra-args "," "") (or extra-args ""))))
  139. (defvar org-babel-R-eoe-indicator "'org_babel_R_eoe'")
  140. (defvar org-babel-R-eoe-output "[1] \"org_babel_R_eoe\"")
  141. (defvar org-babel-R-wrapper-method "main <- function ()\n{\n%s\n}
  142. write.table(main(), file=\"%s\", sep=\"\\t\", na=\"nil\",row.names=%s, col.names=%s, quote=FALSE)")
  143. (defun org-babel-R-evaluate (session body result-type column-names-p row-names-p)
  144. "Pass BODY to the R process in SESSION. If RESULT-TYPE equals
  145. 'output then return a list of the outputs of the statements in
  146. BODY, if RESULT-TYPE equals 'value then return the value of the
  147. last statement in BODY, as elisp."
  148. (if (not session)
  149. ;; external process evaluation
  150. (case result-type
  151. (output
  152. (with-temp-buffer
  153. (insert body)
  154. (org-babel-shell-command-on-region (point-min) (point-max) "R --slave --no-save" 'current-buffer 'replace)
  155. (buffer-string)))
  156. (value
  157. (let* ((tmp-file (make-temp-file "R-out-functional-results")) exit-code
  158. (stderr
  159. (with-temp-buffer
  160. (insert (format org-babel-R-wrapper-method
  161. body tmp-file (if row-names-p "TRUE" "FALSE") (if column-names-p (if row-names-p "NA" "TRUE") "FALSE")))
  162. (setq exit-code (org-babel-shell-command-on-region
  163. (point-min) (point-max) "R --no-save" nil 'replace (current-buffer)))
  164. (buffer-string))))
  165. (if (> exit-code 0) (org-babel-error-notify exit-code stderr))
  166. (org-babel-R-process-value-result
  167. (org-babel-import-elisp-from-file (org-babel-maybe-remote-file tmp-file))
  168. column-names-p))))
  169. ;; comint session evaluation
  170. (org-babel-comint-in-buffer session
  171. (let* ((tmp-file (make-temp-file "org-babel-R"))
  172. (full-body
  173. (case result-type
  174. (value
  175. (mapconcat #'org-babel-chomp (list body
  176. (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"))
  177. org-babel-R-eoe-indicator) "\n"))
  178. (output
  179. (mapconcat #'org-babel-chomp (list body org-babel-R-eoe-indicator) "\n"))))
  180. (raw (org-babel-comint-with-output session org-babel-R-eoe-output nil
  181. (insert full-body) (inferior-ess-send-input)))
  182. (comint-prompt-regexp
  183. (concat "^\\("
  184. inferior-ess-primary-prompt
  185. "\\|"
  186. inferior-ess-secondary-prompt
  187. "\\)*"))
  188. broke results)
  189. (case result-type
  190. (value (org-babel-R-process-value-result
  191. (org-babel-import-elisp-from-file
  192. (org-babel-maybe-remote-file tmp-file))
  193. column-names-p))
  194. (output
  195. (flet ((extractor
  196. (el)
  197. (if (or broke
  198. (and (string-match (regexp-quote org-babel-R-eoe-output) el)
  199. (setq broke t)))
  200. nil
  201. (if (= (length el) 0)
  202. nil
  203. (if (string-match comint-prompt-regexp el)
  204. (substring el (match-end 0))
  205. el)))))
  206. (mapconcat
  207. #'identity
  208. (delete nil (mapcar #'extractor (mapcar #'org-babel-chomp raw))) "\n"))))))))
  209. (defun org-babel-R-process-value-result (result column-names-p)
  210. "R-specific processing of return value prior to return to org-babel.
  211. Currently, insert hline if column names in output have been requested."
  212. (if column-names-p
  213. (cons (car result) (cons 'hline (cdr result)))
  214. result))
  215. (provide 'org-babel-R)
  216. ;;; org-babel-R.el ends here