我有一组具有高梯度的数据,此时gnuplot会生成一条非常粗的线。我的gnuplot文件看起来像
set style data linespoints
set xdata time
set timefmt "%H:%M:%S"
set terminal png truecolor size 800,600
set xrange ["12:00:00":"20:00:00"]
set output 'gnuplot.png'
plot 'gnuplot.dat' using 1:2 title "s"
数据是
17:05:00 3851
17:10:00 3885
17:15:00 4172
17:20:00 10896
17:25:00 10914
17:30:00 11735
17:35:00 10404
17:40:00 10482
17:45:00 9514
并且图像最终看起来像
我做错了吗?
在fedora上使用gnuplot 4.4 patchlevel 0(fc14.x86_64)