我有下面的例子,
1|5
2|8
3|1
6|8
7|5
8|10
使用下面的代码,图表连接 3 和 6 x 数据之间有没有办法在 3 和 6 x 数据之间绘制零值,
gnuplot << EOT
set datafile separator "|"
set grid
set key off
set yrange [0:10]
set xrange [0:10]
plot "test.jpeg" u 1:2 smooth frequency lw 1 linecolor rgb "blue"
EOT