2016-07-29 59 views
4

我有以下GNU情節:如何改善以下牛姦情節?

# automobile_input.txt 
# 
set term png 
set output "automobile.png" 
# 
# Fields in each record are separated by commas. 
# 
set datafile separator "," 

    set title "Price versus Curb weight" 
    set xlabel "Price in dollars" 
    set ylabel "Curb weight in pounds" 
    set grid 
    plot 'x' using 1:2 
    quit 

x是包含數字的文件,如

1,2 
    0.5,4 

我想對這個情節了一些更改。

在圖的頂部有「x使用1:2」,我想刪除它。

最後,最重要的事情是:我想以相同的格式添加另一個文件y,該文件也將繪製在同一個繪圖上,只有不同的符號和顏色(而不是紅色加) ,例如,藍色三角形。我寧願這些加號是圓圈。

回答

4

在劇情上使用notitle忽略數據系列標題。添加另一條曲線可以這樣完成:

plot 'x' using 1:2 notitle, \ 
    'y' using 1:2 notitle 

數據系列點將自動調整。要手動指定格式,你可以用這樣的情節:

plot 'x' using 1:2 with points pointtype 6 linecolor rgb 'red' title "Data X", \ 
     'y' using 1:2 with points pointtype 8 linecolor rgb 'blue' title "Data Y" 

你通常會看到腳本網上說這些縮寫命令看起來像:

plot 'x' w p pt 6 lc rgb 'red' title "Data X", \ 
     'y' w p pt 8 lc rgb 'blue' title "Data Y" 
+0

而不是使用'notitle'選項,在繪圖之前發出命令'unset key'。如果意圖爲所有曲線_刪除鍵條目_,則根本沒有理由將其留在繪圖上,並且這將清理繪圖命令。 – Matthew

+0

也要注意,在反斜槓後面不要有空格或製表符等空白字符。 –