我正在使用gnuplot构建一个图形但是我的一些行是零,我正在用两列进行数学运算。当我尝试绘制文件时,将任何数字除以零都会引发错误。
set output "iostat-iops.png"
set title "IOPs - KBytes per IO"
set xdata time
set timefmt "%H:%M:%S"
set format x "%H:%M"
plot "iostat-x.dat.1" using 2:($9/$7) title "rkb/s" with linespoints, \
"iostat-x.dat.1" using 2:($10/$8) title "wkb/s" with linesponints
在我的例子中,我有时将列7归零。有没有办法在其上制作IF?