Gnuplot不打印标题,也不打印数据点

时间:2016-12-13 20:34:46

标签: gnuplot

此来源:

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 

生成此图片:

enter image description here

但我不知道,因为我不明白为什么它不打印第二行中的行标题和数据对应中的+,就像这张图片一样(取自本书& #39; Gnuplot在行动中第2步:

enter image description here

更清楚: 我希望我的第二行像'稀疏2'。

谢谢!

1 个答案:

答案 0 :(得分:1)

获取行的标题(“键”):删除unset key

绘制“+”符号:plot ... with linespoints代替plot ... with lines

通过删除完整的plot ...命令并将其替换为test,您可以了解可用的线型和点样式。这将绘制测试面板,您可以组合线条颜色,点形式......

我认为dt中的set linetype在Gnuplot 5.0中是新的,我只有4.6而且无法测试。