org-babel-R.el 9.7 KB

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