我正在使用带有情节的emacs组织模式。默认情况下,org-plot / gnuplot命令生成的图表使用列索引号作为图例名称。我想使用列名,怎么做?
答案 0 :(得分:0)
当前版本的org-plot使用列名,而不是列索引。 例如,这个
#+PLOT: title:"Citas" ind:1 deps:(3) type:2d with:histograms set:"yrange [0:]"
| Sede | Max cites | H-index |
|-----------+-----------+---------|
| Chile | 257.72 | 21.39 |
| Leeds | 165.77 | 19.68 |
| São Paolo | 71.00 | 11.50 |
| Stockholm | 134.19 | 14.33 |
| Morelia | 257.56 | 17.67 |
生成一个名为“H-index”的图例。
您还可以使用标签为他们命名:
#+PLOT: title:"Citas" labels:("" "" "FOO") ind:1 deps:(3) type:2d with:histograms set:"yrange [0:]"
将图例条目命名为“FOO”。
使用Org-mode版本8.3.4(release_8.3.4-801-gd1fb75 @ / home / nick / elisp / org-mode / lisp /)进行测试