ob-R.el 11 KB

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