我有一个包含六对XY数据的数据文件。我想在一个图形中绘制六个功能。但是当我这样做时,线条看起来有些参差不齐。
这是我的代码:
set terminal pdf
set output 'test.pdf'
set xrange [10:150]
set yrange [-150:5000]
set xlabel "2 {/Symbol q} / °"
set ylabel "int. / a.u." offset .8,0
plot 'test.xy' using ($1):($2) notitle w lines ls 2, \
'test.xy' using ($3):($4) notitle w lines ls 3, \
'test.xy' using ($5):($6) notitle w lines ls 4, \
'test.xy' using ($7):($8) notitle w lines ls 5, \
'test.xy' using ($9):($10) notitle w lines ls 6, \
'test.xy' using ($11):($12) notitle w lines ls 7
如您所见,背景是无法控制的磨损。显然,这种现象不会出现在数据中,并且当我仅绘制较小的扇区(例如x1 = 25,x2 = 32)时,背景不会像这样磨损。
有人知道为什么会这样吗?