3
在gnuplot中,如何用线绘制但跳过缺少的数据点?
我每天都有一个与之相关的价值,例如: 120530 70.1 120531 69.0 120601 69.2 120602 69.5 # and so on for 200 lines 用线在gnuplot中绘制此数据时,数据点连接良好。不幸的是,在某些地方可能会丢失一周以上的数据点。Gnuplot在这些间隔上绘制长线。如何使gnuplot仅在连续几天内连接点? 需要预处理数据的解决方案很好,因为我已经使用脚本对其进行了平滑处理。 这是我使用的: set xdata time set timefmt "%y%m%d" plot "vikt_ma.txt" using 1:2 with lines title "first line", \\ "" using 1:3 with lines title "second line" 例:
20
gnuplot