2016-12-13 88 views
0

此源: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

但Im't堅持,因爲我不明白爲什麼它沒有在第二行中打印出行的標題和+的數據對應關係,就像這張圖片(摘自「Gnuplot in action 2nd」):

enter image description here

更清晰: 我想要我的第二行像'稀疏2'。

謝謝!

回答

1

爲了得到線( 「鑰匙」)的標題:刪除unset key

要繪製的 「+」 號:plot ... with linespoints,而不是plot ... with lines

您可以通過刪除完整的plot ...命令並將其替換爲test來獲得可用線條和點樣式的概述。這將繪製一個測試面板,並且您可以結合線條顏色,點形式......

我認爲您的set linetype中的dt是Gnuplot 5.0中的新增功能,我只有4.6,並且無法測試此功能。