ob-R.el 11 KB

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