ob-R.el 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306
  1. ;;; ob-R.el --- org-babel functions for R code evaluation
  2. ;; Copyright (C) 2009, 2010 Free Software Foundation, Inc.
  3. ;; Author: Eric Schulte, Dan Davison
  4. ;; Keywords: literate programming, reproducible research, R, statistics
  5. ;; Homepage: http://orgmode.org
  6. ;; Version: 7.01trans
  7. ;; This file is part of GNU Emacs.
  8. ;; GNU Emacs 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 of the License, or
  11. ;; (at your option) any later version.
  12. ;; GNU Emacs is distributed in the hope that it will be useful,
  13. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. ;; GNU General Public License for more details.
  16. ;; You should have received a copy of the GNU General Public License
  17. ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
  18. ;;; Commentary:
  19. ;; Org-Babel support for evaluating R code
  20. ;;; Code:
  21. (require 'ob)
  22. (require 'ob-ref)
  23. (require 'ob-comint)
  24. (require 'ob-eval)
  25. (eval-when-compile (require 'cl))
  26. (declare-function orgtbl-to-tsv "org-table" (table params))
  27. (declare-function R "ext:essd-r" (&optional start-args))
  28. (declare-function inferior-ess-send-input "ext:ess-inf" ())
  29. (declare-function ess-make-buffer-current "ext:ess-inf" ())
  30. (defconst org-babel-header-arg-names:R
  31. '(width height bg units pointsize antialias quality compression
  32. res type family title fonts version paper encoding
  33. pagecentre colormodel useDingbats horizontal)
  34. "R-specific header arguments.")
  35. (defvar org-babel-default-header-args:R '())
  36. (defvar org-babel-R-command "R --slave --no-save"
  37. "Name of command to use for executing R code.")
  38. (defun org-babel-expand-body:R (body params &optional processed-params)
  39. "Expand BODY according to PARAMS, return the expanded body."
  40. (let* ((processed-params (or processed-params
  41. (org-babel-process-params params)))
  42. (vars (mapcar
  43. (lambda (i)
  44. (cons (car (nth i (nth 1 processed-params)))
  45. (org-babel-reassemble-table
  46. (cdr (nth i (nth 1 processed-params)))
  47. (cdr (nth i (nth 4 processed-params)))
  48. (cdr (nth i (nth 5 processed-params))))))
  49. (number-sequence 0 (1- (length (nth 1 processed-params))))))
  50. (out-file (cdr (assoc :file params))))
  51. (mapconcat ;; define any variables
  52. #'org-babel-trim
  53. ((lambda (inside)
  54. (if out-file
  55. (append
  56. (list (org-babel-R-construct-graphics-device-call out-file params))
  57. inside
  58. (list "dev.off()"))
  59. inside))
  60. (append
  61. (mapcar
  62. (lambda (pair)
  63. (org-babel-R-assign-elisp
  64. (car pair) (cdr pair)
  65. (equal "yes" (cdr (assoc :colnames params)))
  66. (equal "yes" (cdr (assoc :rownames params)))))
  67. vars)
  68. (list body))) "\n")))
  69. (defun org-babel-execute:R (body params)
  70. "Execute a block of R code.
  71. This function is called by `org-babel-execute-src-block'."
  72. (save-excursion
  73. (let* ((processed-params (org-babel-process-params params))
  74. (result-type (nth 3 processed-params))
  75. (session (org-babel-R-initiate-session
  76. (first processed-params) params))
  77. (colnames-p (cdr (assoc :colnames params)))
  78. (rownames-p (cdr (assoc :rownames params)))
  79. (out-file (cdr (assoc :file params)))
  80. (full-body (org-babel-expand-body:R body params processed-params))
  81. (result
  82. (org-babel-R-evaluate
  83. session full-body result-type
  84. (or (equal "yes" colnames-p)
  85. (org-babel-pick-name (nth 4 processed-params) colnames-p))
  86. (or (equal "yes" rownames-p)
  87. (org-babel-pick-name (nth 5 processed-params) rownames-p)))))
  88. (message "result is %S" result)
  89. (or out-file result))))
  90. (defun org-babel-prep-session:R (session params)
  91. "Prepare SESSION according to the header arguments specified in PARAMS."
  92. (let* ((session (org-babel-R-initiate-session session params))
  93. (vars (org-babel-ref-variables params))
  94. (var-lines
  95. (mapcar
  96. (lambda (pair) (org-babel-R-assign-elisp
  97. (car pair) (cdr pair)
  98. (equal (cdr (assoc :colnames params)) "yes")
  99. (equal (cdr (assoc :rownames params)) "yes")))
  100. vars)))
  101. (org-babel-comint-in-buffer session
  102. (mapc (lambda (var)
  103. (end-of-line 1) (insert var) (comint-send-input nil t)
  104. (org-babel-comint-wait-for-output session)) var-lines))
  105. session))
  106. (defun org-babel-load-session:R (session body params)
  107. "Load BODY into SESSION."
  108. (save-window-excursion
  109. (let ((buffer (org-babel-prep-session:R session params)))
  110. (with-current-buffer buffer
  111. (goto-char (process-mark (get-buffer-process (current-buffer))))
  112. (insert (org-babel-chomp body)))
  113. buffer)))
  114. ;; helper functions
  115. (defun org-babel-R-quote-tsv-field (s)
  116. "Quote field S for export to R."
  117. (if (stringp s)
  118. (concat "\"" (mapconcat 'identity (split-string s "\"") "\"\"") "\"")
  119. (format "%S" s)))
  120. (defun org-babel-R-assign-elisp (name value colnames-p rownames-p)
  121. "Construct R code assigning the elisp VALUE to a variable named NAME."
  122. (if (listp value)
  123. (let ((transition-file (org-babel-temp-file "R-import-")))
  124. ;; ensure VALUE has an orgtbl structure (depth of at least 2)
  125. (unless (listp (car value)) (setq value (list value)))
  126. (with-temp-file (org-babel-maybe-remote-file transition-file)
  127. (insert (orgtbl-to-tsv value '(:fmt org-babel-R-quote-tsv-field)))
  128. (insert "\n"))
  129. (format "%s <- read.table(\"%s\", header=%s, row.names=%s, sep=\"\\t\", as.is=TRUE)"
  130. name transition-file
  131. (if (or (eq (nth 1 value) 'hline) colnames-p) "TRUE" "FALSE")
  132. (if rownames-p "1" "NULL")))
  133. (format "%s <- %s" name (org-babel-R-quote-tsv-field value))))
  134. (defvar ess-ask-for-ess-directory)
  135. (defun org-babel-R-initiate-session (session params)
  136. "If there is not a current R process then create one."
  137. (unless (string= session "none")
  138. (let ((session (or session "*R*"))
  139. (ess-ask-for-ess-directory
  140. (and ess-ask-for-ess-directory (not (cdr (assoc :dir params))))))
  141. (if (org-babel-comint-buffer-livep session)
  142. session
  143. (save-window-excursion
  144. (require 'ess) (R)
  145. (rename-buffer
  146. (if (bufferp session)
  147. (buffer-name session)
  148. (if (stringp session)
  149. session
  150. (buffer-name))))
  151. (current-buffer))))))
  152. (defvar ess-local-process-name)
  153. (defun org-babel-R-associate-session (session)
  154. "Associate R code buffer with an R session.
  155. Make SESSION be the inferior ESS process associated with the
  156. current code buffer."
  157. (setq ess-local-process-name
  158. (process-name (get-buffer-process session)))
  159. (ess-make-buffer-current))
  160. (defun org-babel-R-construct-graphics-device-call (out-file params)
  161. "Construct the call to the graphics device."
  162. (let ((devices
  163. '((:bmp . "bmp")
  164. (:jpg . "jpeg")
  165. (:jpeg . "jpeg")
  166. (:tiff . "tiff")
  167. (:png . "png")
  168. (:svg . "svg")
  169. (:pdf . "pdf")
  170. (:ps . "postscript")
  171. (:postscript . "postscript")))
  172. (allowed-args '(:width :height :bg :units :pointsize
  173. :antialias :quality :compression :res
  174. :type :family :title :fonts :version
  175. :paper :encoding :pagecentre :colormodel
  176. :useDingbats :horizontal))
  177. (device (and (string-match ".+\\.\\([^.]+\\)" out-file)
  178. (match-string 1 out-file)))
  179. (extra-args (cdr (assq :R-dev-args params))) filearg args)
  180. (setq device (or (and device (cdr (assq (intern (concat ":" device))
  181. devices))) "png"))
  182. (setq filearg
  183. (if (member device '("pdf" "postscript" "svg")) "file" "filename"))
  184. (setq args (mapconcat
  185. (lambda (pair)
  186. (if (member (car pair) allowed-args)
  187. (format ",%s=%s"
  188. (substring (symbol-name (car pair)) 1)
  189. (cdr pair)) ""))
  190. params ""))
  191. (format "%s(%s=\"%s\"%s%s%s)"
  192. device filearg out-file args
  193. (if extra-args "," "") (or extra-args ""))))
  194. (defvar org-babel-R-eoe-indicator "'org_babel_R_eoe'")
  195. (defvar org-babel-R-eoe-output "[1] \"org_babel_R_eoe\"")
  196. (defvar org-babel-R-write-object-command "{function(object, transfer.file) {invisible(if(inherits(try(write.table(object, file=transfer.file, sep=\"\\t\", na=\"nil\",row.names=%s, col.names=%s, quote=FALSE), silent=TRUE),\"try-error\")) {if(!file.exists(transfer.file)) file.create(transfer.file)})}}(object=%s, transfer.file=\"%s\")")
  197. (defun org-babel-R-evaluate
  198. (session body result-type column-names-p row-names-p)
  199. "Evaluate R code in BODY."
  200. (if session
  201. (org-babel-R-evaluate-session
  202. session body result-type column-names-p row-names-p)
  203. (org-babel-R-evaluate-external-process
  204. body result-type column-names-p row-names-p)))
  205. (defun org-babel-R-evaluate-external-process
  206. (body result-type column-names-p row-names-p)
  207. "Evaluate BODY in external R process.
  208. If RESULT-TYPE equals 'output then return standard output as a
  209. string. If RESULT-TYPE equals 'value then return the value of the
  210. last statement in BODY, as elisp."
  211. (case result-type
  212. (value
  213. (let ((tmp-file (org-babel-temp-file "R-results-")))
  214. (org-babel-eval org-babel-R-command
  215. (format org-babel-R-write-object-command
  216. (if row-names-p "TRUE" "FALSE")
  217. (if column-names-p
  218. (if row-names-p "NA" "TRUE")
  219. "FALSE")
  220. (format "{function ()\n{\n%s\n}}()" body)
  221. tmp-file))
  222. (org-babel-R-process-value-result
  223. (org-babel-import-elisp-from-file
  224. (org-babel-maybe-remote-file tmp-file) '(16)) column-names-p)))
  225. (output (org-babel-eval org-babel-R-command body))))
  226. (defun org-babel-R-evaluate-session
  227. (session body result-type column-names-p row-names-p)
  228. "Evaluate BODY in SESSION.
  229. If RESULT-TYPE equals 'output then return standard output as a
  230. string. If RESULT-TYPE equals 'value then return the value of the
  231. last statement in BODY, as elisp."
  232. (case result-type
  233. (value
  234. (with-temp-buffer
  235. (insert (org-babel-chomp body))
  236. (let ((ess-local-process-name
  237. (process-name (get-buffer-process session))))
  238. (ess-eval-buffer nil)))
  239. (let ((tmp-file (org-babel-temp-file "R-")))
  240. (org-babel-comint-eval-invisibly-and-wait-for-file
  241. session (org-babel-maybe-remote-file tmp-file)
  242. (format org-babel-R-write-object-command
  243. (if row-names-p "TRUE" "FALSE")
  244. (if column-names-p
  245. (if row-names-p "NA" "TRUE")
  246. "FALSE")
  247. ".Last.value" tmp-file))
  248. (org-babel-R-process-value-result
  249. (org-babel-import-elisp-from-file
  250. (org-babel-maybe-remote-file tmp-file) '(16)) column-names-p)))
  251. (output
  252. (mapconcat
  253. #'org-babel-chomp
  254. (butlast
  255. (delq nil
  256. (mapcar
  257. (lambda (line) ;; cleanup extra prompts left in output
  258. (if (string-match
  259. "^\\([ ]*[>+][ ]?\\)+\\([[0-9]+\\|[ ]\\)" line)
  260. (substring line (match-end 1))
  261. line))
  262. (org-babel-comint-with-output (session org-babel-R-eoe-output)
  263. (insert (mapconcat #'org-babel-chomp
  264. (list body org-babel-R-eoe-indicator)
  265. "\n"))
  266. (inferior-ess-send-input)))) 2) "\n"))))
  267. (defun org-babel-R-process-value-result (result column-names-p)
  268. "R-specific processing of return value.
  269. Insert hline if column names in output have been requested."
  270. (if column-names-p
  271. (cons (car result) (cons 'hline (cdr result)))
  272. result))
  273. (provide 'ob-R)
  274. ;; arch-tag: cd4c7298-503b-450f-a3c2-f3e74b630237
  275. ;;; ob-R.el ends here