我有以下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 - 我需要添加或修改哪些才能实现这一目标?
答案 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
。