ob-R.el 10 KB

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