1 ;;; org-plot.el --- Support for plotting from Org-mode
3 ;; Copyright (C) 2008-2016 Free Software Foundation, Inc.
5 ;; Author: Eric Schulte <schulte dot eric at gmail dot com>
6 ;; Keywords: tables, plotting
7 ;; Homepage: http://orgmode.org
9 ;; This file is part of GNU Emacs.
11 ;; GNU Emacs is free software: you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation, either version 3 of the License, or
14 ;; (at your option) any later version.
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
26 ;; Borrows ideas and a couple of lines of code from org-exp.el.
28 ;; Thanks to the org-mode mailing list for testing and implementation
29 ;; and feature suggestions
37 (declare-function gnuplot-delchar-or-maybe-eof
"ext:gnuplot" (arg))
38 (declare-function gnuplot-mode
"ext:gnuplot" ())
39 (declare-function gnuplot-send-buffer-to-gnuplot
"ext:gnuplot" ())
41 (defvar org-plot
/gnuplot-default-options
45 "Default options to gnuplot used by `org-plot/gnuplot'.")
47 (defvar org-plot-timestamp-fmt nil
)
49 (defun org-plot/add-options-to-plist
(p options
)
50 "Parse an OPTIONS line and set values in the property list P.
51 Returns the resulting property list."
54 (let ((op '(("type" .
:plot-type
)
65 ("timeind" .
:timeind
)
66 ("timefmt" .
:timefmt
)))
67 (multiples '("set" "line"))
68 (regexp ":\\([\"][^\"]+?[\"]\\|[(][^)]+?[)]\\|[^ \t\n\r;,.]*\\)")
71 (while (setq o
(pop op
))
72 (if (member (car o
) multiples
) ;; keys with multiple values
74 (concat (regexp-quote (car o
)) regexp
)
76 (setq start
(match-end 0))
77 (setq p
(plist-put p
(cdr o
)
78 (cons (car (read-from-string
79 (match-string 1 options
)))
80 (plist-get p
(cdr o
)))))
82 (if (string-match (concat (regexp-quote (car o
)) regexp
)
84 (setq p
(plist-put p
(cdr o
)
85 (car (read-from-string
86 (match-string 1 options
)))))))))))
89 (defun org-plot/goto-nearest-table
()
90 "Move the point forward to the beginning of nearest table.
91 Return value is the point at the beginning of the table."
92 (interactive) (move-beginning-of-line 1)
93 (while (not (or (org-at-table-p) (< 0 (forward-line 1)))))
94 (goto-char (org-table-begin)))
96 (defun org-plot/collect-options
(&optional params
)
97 "Collect options from an org-plot `#+Plot:' line.
98 Accepts an optional property list PARAMS, to which the options
99 will be added. Returns the resulting property list."
101 (let ((line (thing-at-point 'line
)))
102 (if (string-match "#\\+PLOT: +\\(.*\\)$" line
)
103 (org-plot/add-options-to-plist params
(match-string 1 line
))
106 (defun org-plot-quote-timestamp-field (s)
107 "Convert field S from timestamp to Unix time and export to gnuplot."
108 (format-time-string org-plot-timestamp-fmt
(org-time-string-to-time s
)))
110 (defun org-plot-quote-tsv-field (s)
111 "Quote field S for export to gnuplot."
112 (if (string-match org-table-number-regexp s
) s
113 (if (string-match org-ts-regexp3 s
)
114 (org-plot-quote-timestamp-field s
)
115 (concat "\"" (mapconcat 'identity
(split-string s
"\"") "\"\"") "\""))))
117 (defun org-plot/gnuplot-to-data
(table data-file params
)
118 "Export TABLE to DATA-FILE in a format readable by gnuplot.
119 Pass PARAMS through to `orgtbl-to-generic' when exporting TABLE."
122 (setq-local org-plot-timestamp-fmt
(or
123 (plist-get params
:timefmt
)
124 "%Y-%m-%d-%H:%M:%S"))
125 (insert (orgtbl-to-generic
128 '(:sep
"\t" :fmt org-plot-quote-tsv-field
)
132 (defun org-plot/gnuplot-to-grid-data
(table data-file params
)
133 "Export the data in TABLE to DATA-FILE for gnuplot.
134 This means in a format appropriate for grid plotting by gnuplot.
135 PARAMS specifies which columns of TABLE should be plotted as independent
136 and dependant variables."
138 (let* ((ind (- (plist-get params
:ind
) 1))
139 (deps (if (plist-member params
:deps
)
140 (mapcar (lambda (val) (- val
1)) (plist-get params
:deps
))
142 (dotimes (col (length (first table
)))
143 (setf collector
(cons col collector
)))
147 (when (>= ind
0) ;; collect values of ind col
148 (setf row-vals
(mapcar (lambda (row) (setf counter
(+ 1 counter
))
149 (cons counter
(nth ind row
))) table
)))
150 (when (or deps
(>= ind
0)) ;; remove non-plotting columns
151 (setf deps
(delq ind deps
))
152 (setf table
(mapcar (lambda (row)
153 (dotimes (col (length row
))
154 (unless (memq col deps
)
155 (setf (nth col row
) nil
)))
158 ;; write table to gnuplot grid datafile format
159 (with-temp-file data-file
160 (let ((num-rows (length table
)) (num-cols (length (first table
)))
161 (gnuplot-row (lambda (col row value
)
162 (setf col
(+ 1 col
)) (setf row
(+ 1 row
))
163 (format "%f %f %f\n%f %f %f\n"
164 col
(- row
0.5) value
;; lower edge
165 col
(+ row
0.5) value
))) ;; upper edge
166 front-edge back-edge
)
167 (dotimes (col num-cols
)
168 (dotimes (row num-rows
)
171 (funcall gnuplot-row
(- col
1) row
172 (string-to-number (nth col
(nth row table
))))))
175 (funcall gnuplot-row col row
176 (string-to-number (nth col
(nth row table
)))))))
177 ;; only insert once per row
178 (insert back-edge
) (insert "\n") ;; back edge
179 (insert front-edge
) (insert "\n") ;; front edge
180 (setf back-edge
"") (setf front-edge
""))))
183 (defun org-plot/gnuplot-script
(data-file num-cols params
&optional preface
)
184 "Write a gnuplot script to DATA-FILE respecting the options set in PARAMS.
185 NUM-COLS controls the number of columns plotted in a 2-d plot.
186 Optional argument PREFACE returns only option parameters in a
187 manner suitable for prepending to a user-specified script."
188 (let* ((type (plist-get params
:plot-type
))
189 (with (if (eq type
'grid
) 'pm3d
(plist-get params
:with
)))
190 (sets (plist-get params
:set
))
191 (lines (plist-get params
:line
))
192 (map (plist-get params
:map
))
193 (title (plist-get params
:title
))
194 (file (plist-get params
:file
))
195 (ind (plist-get params
:ind
))
196 (time-ind (plist-get params
:timeind
))
197 (timefmt (plist-get params
:timefmt
))
198 (text-ind (plist-get params
:textind
))
199 (deps (if (plist-member params
:deps
) (plist-get params
:deps
)))
200 (col-labels (plist-get params
:labels
))
201 (x-labels (plist-get params
:xlabels
))
202 (y-labels (plist-get params
:ylabels
))
203 (plot-str "'%s' using %s%d%s with %s title '%s'")
209 ;; ats = add-to-script
210 (ats (lambda (line) (setf script
(concat script
"\n" line
))))
212 (when file
; output file
213 (funcall ats
(format "set term %s" (file-name-extension file
)))
214 (funcall ats
(format "set output '%s'" file
)))
217 (3d (when map
(funcall ats
"set map")))
218 (grid (if map
(funcall ats
"set pm3d map") (funcall ats
"set pm3d"))))
219 (when title
(funcall ats
(format "set title '%s'" title
))) ; title
220 (mapc ats lines
) ; line
221 (dolist (el sets
) (funcall ats
(format "set %s" el
))) ; set
222 ;; Unless specified otherwise, values are TAB separated.
223 (unless (org-string-match-p "^set datafile separator" script
)
224 (funcall ats
"set datafile separator \"\\t\""))
225 (when x-labels
; x labels (xtics)
227 (format "set xtics (%s)"
228 (mapconcat (lambda (pair)
229 (format "\"%s\" %d" (cdr pair
) (car pair
)))
231 (when y-labels
; y labels (ytics)
233 (format "set ytics (%s)"
234 (mapconcat (lambda (pair)
235 (format "\"%s\" %d" (cdr pair
) (car pair
)))
237 (when time-ind
; timestamp index
238 (funcall ats
"set xdata time")
239 (funcall ats
(concat "set timefmt \""
240 (or timefmt
; timefmt passed to gnuplot
241 "%Y-%m-%d-%H:%M:%S") "\"")))
243 (case type
; plot command
244 (2d (dotimes (col num-cols
)
245 (unless (and (eq type
'2d
)
246 (or (and ind
(equal (1+ col
) ind
))
247 (and deps
(not (member (1+ col
) deps
)))))
250 (format plot-str data-file
251 (or (and ind
(> ind
0)
253 (format "%d:" ind
)) "")
255 (if text-ind
(format ":xticlabel(%d)" ind
) "")
257 (or (nth col col-labels
) (format "%d" (1+ col
))))
260 (setq plot-lines
(list (format "'%s' matrix with %s title ''"
263 (setq plot-lines
(list (format "'%s' with %s title ''"
266 (concat plot-cmd
" " (mapconcat #'identity
271 ;;-----------------------------------------------------------------------------
274 (defun org-plot/gnuplot
(&optional params
)
275 "Plot table using gnuplot. Gnuplot options can be specified with PARAMS.
276 If not given options will be taken from the +PLOT
277 line directly before or after the table."
280 (save-window-excursion
281 (delete-other-windows)
282 (when (get-buffer "*gnuplot*") ; reset *gnuplot* if it already running
283 (with-current-buffer "*gnuplot*"
284 (goto-char (point-max))))
285 (org-plot/goto-nearest-table
)
286 ;; Set default options.
287 (dolist (pair org-plot
/gnuplot-default-options
)
288 (unless (plist-member params
(car pair
))
289 (setf params
(plist-put params
(car pair
) (cdr pair
)))))
290 ;; collect table and table information
291 (let* ((data-file (make-temp-file "org-plot"))
292 (table (org-table-to-lisp))
293 (num-cols (length (if (eq (first table
) 'hline
) (second table
)
295 (run-with-idle-timer 0.1 nil
#'delete-file data-file
)
296 (while (eq 'hline
(car table
)) (setf table
(cdr table
)))
297 (when (eq (cadr table
) 'hline
)
298 (setf params
(plist-put params
:labels
(first table
))) ; headers to labels
299 (setf table
(delq 'hline
(cdr table
)))) ; clean non-data from table
301 (save-excursion (while (and (equal 0 (forward-line -
1))
302 (looking-at "[[:space:]]*#\\+"))
303 (setf params
(org-plot/collect-options params
))))
304 ;; Dump table to datafile (very different for grid).
305 (case (plist-get params
:plot-type
)
306 (2d (org-plot/gnuplot-to-data table data-file params
))
307 (3d (org-plot/gnuplot-to-data table data-file params
))
308 (grid (let ((y-labels (org-plot/gnuplot-to-grid-data
309 table data-file params
)))
310 (when y-labels
(plist-put params
:ylabels y-labels
)))))
311 ;; Check for timestamp ind column.
312 (let ((ind (1- (plist-get params
:ind
))))
313 (when (and (>= ind
0) (eq '2d
(plist-get params
:plot-type
)))
317 (if (string-match org-ts-regexp3 el
) 0 1))
318 (mapcar (lambda (row) (nth ind row
)) table
))))
320 (plist-put params
:timeind t
)
321 ;; Check for text ind column.
322 (if (or (string= (plist-get params
:with
) "hist")
326 (if (string-match org-table-number-regexp el
)
328 (mapcar (lambda (row) (nth ind row
)) table
))))
330 (plist-put params
:textind t
)))))
333 (if (plist-get params
:script
) ; user script
335 (org-plot/gnuplot-script data-file num-cols params t
))
337 (insert-file-contents (plist-get params
:script
))
338 (goto-char (point-min))
339 (while (re-search-forward "$datafile" nil t
)
340 (replace-match data-file nil nil
)))
341 (insert (org-plot/gnuplot-script data-file num-cols params
)))
344 (gnuplot-send-buffer-to-gnuplot))
346 (bury-buffer (get-buffer "*gnuplot*")))))
351 ;; generated-autoload-file: "org-loaddefs.el"
354 ;;; org-plot.el ends here