Gnuplot脚本输出eps或svg - 如何写?

时间:2016-02-13 21:44:27

标签: svg gnuplot eps

我有以下gnuplot脚本:

set autoscale
unset log
unset label
set xtic auto
set ytic auto
unset title
set xlabel "Number of clusters"
set ylabel "Accuracy of classifier (%)"
plot "cluster.dat" using 1:3 title "PART" with lines, \
     "cluster.dat" using 1:4 title "JRip" with lines, \
     "cluster.dat" using 1:5 title "FURIA" with lines

我希望这个脚本在运行时输出SVG或EPS - 我需要添加或修改哪些才能实现这一目标?

1 个答案:

答案 0 :(得分:6)

gnuplot中,输出类型称为terminal

在您的脚本中,在plot命令之前使用

set term svg
set output "output.svg"

set term eps
set output "output.eps"

两个终端都有几种选择。输入help eps(在某些gnuplot上为help epscairo)或help svg

要获取构建的可用终端列表,请键入set terminal