選擇繪圖風格
明確選擇
通常使用 with
關鍵字選擇繪圖樣式,例如
plot x with points
這允許為每個 plot
使用不同的繪圖樣式:
plot x with points, 2*x with lines
在 gnuplot 命令視窗中鍵入 help with
會給出所有可用繪圖樣式的列表。
全域性繪圖風格選擇
也可以為所有繪圖命令全域性設定繪圖樣式。這裡,gnuplot 區分功能和資料圖,可以設定不同的預設樣式。
對於功能使用 set style function
:
set style function linespoints
plot x, 2*x
對於資料檔案使用 set style data
:
set style data lines
plot 'file.dat', 'other-file.dat'
注意,對於函式,預設樣式是 lines
,對於資料檔案,它是 points
。使用 show style data
和 show style function
,你可以檢查當前選擇的繪圖樣式。