1
我有以下gnuplot的腳本:Gnuplot腳本輸出eps或svg - 如何編寫?
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 - 將我需要什麼,添加或修改來實現這一目標?