此来源:
clear
reset
unset key
set terminal pngcairo
set output "speed.png"
set title "Speed w.r.t. execution time and file size"
set xlabel "file size [Byte]"
set ylabel "Time [s]"
set linetype 1 pi -1 pt 6 lc black dt solid
set linetype 2 pi -1 pt 4 lc black dt (8,6)
plot \
"speed_pc.dat" t "PC" with line, \
"speed_droid.dat" t "device" with line
生成此图片:
但我不知道,因为我不明白为什么它不打印第二行中的行标题和数据对应中的+,就像这张图片一样(取自本书& #39; Gnuplot在行动中第2步:
更清楚: 我希望我的第二行像'稀疏2'。
谢谢!
答案 0 :(得分:1)
获取行的标题(“键”):删除unset key
绘制“+”符号:plot ... with linespoints
代替plot ... with lines
。
通过删除完整的plot ...
命令并将其替换为test
,您可以了解可用的线型和点样式。这将绘制测试面板,您可以组合线条颜色,点形式......
我认为dt
中的set linetype
在Gnuplot 5.0中是新的,我只有4.6而且无法测试。