org-babel-R.el 9.5 KB

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