3

我正在使用 gnuplot 创建一个堆叠的直方图。今天,第一次,其中一列中的所有数据点都为零。这给 gnuplot 带来了一个问题,因为它现在报告:

直方图中的所有点未定义

这是因为我的“使用”语句具有如下逻辑:

使用 ($6>0:$6:NaN)

当一整列包含被忽略的值时,gnuplot 会阻塞。有没有我可以用来让 gnuplot 忽略这个特殊且无害的问题的设置?有时列会为零,这是数据中的有效条件。我希望 gnuplot 能够处理这个问题。

如果我无法让 gnuplot 处理它,我可能不得不使用不同的命令来发布我的绘图以省略丢失的数据集。除非必须,否则我真的宁愿不进行此更改。

有人有什么建议吗?

编辑(添加绘图脚本和数据文件):

plotscript 和数据文件在运行时生成,使用模板文件和脚本逻辑的组合来确定最终脚本。这通过打开 gnuplot 命令的命令管道并将脚本直接提供给 gnuplot 直接提供给 gnuplot。

今天出现此问题是因为图表中的第 6 列今天全为零。这是一件好事(没有图像处理时间超过 60 分钟)。我希望 gnuplot 简单地抑制零值(根据 plotscript 中的“绘图”行中的三元运算符),如果所有值都被抑制,那么直方图的该列没有数据。正常和预期;除了 gnuplot 不喜欢它。

剧情简介:

set terminal 'pngcairo'
set key center under horizontal font ",8"
set style data histogram
set style histogram rowstacked
set style fill  solid 1.0
set boxwidth 0.5 relative
set xtics border in scale 0.5,0.25 nomirror rotate by 45  font ",8" offset character -2, -1, 0 right
set xtics autofreq  norangelimit
set ytics border in scale 0.5,0.25 nomirror norotate  font ",8" offset character 0, 0, 0 autojustify
set ytics autofreq  norangelimit
set y2tics border in scale 0.5,0.25 nomirror norotate  font ",8" offset character 0, 0, 0 autojustify
set y2tics 1800  norangelimit
set my2tics 6
set title "Image Processing Trends"
set title  offset character 0, 0, 0 font ",18" norotate
set timestamp "" bottom offset character 0,-2,0
unset xlabel
set ylabel "Nbr of Images (bars)"
set ylabel  offset character 2, 0, 0 font ",8" textcolor lt -1 rotate by -270
set y2label "Avg Time in Seconds (line)"
set y2label  offset character 0, 0, 0 font ",8" textcolor lt -1 rotate by -270
set zero 1e-08
set label "Generated by Luna" font ",6" tc rgb "#808080" at graph 1,-0.25 right
plot 'datafile' using (sum [i=2:4] column(i)):xtic(1) title "< 15 min" lc rgb "#00FF50", '' using ($5>0?$5:NaN) title columnhead lc rgb "#F0F000", '' using ($6>0?$6:NaN) title columnhead lc rgb "#FF0000"


Datafile:
"Date" "< 5 min" "5 - 10 min" "10 - 15 min" "15 - 60 min" "> 60 min" "Avg ET"
  2012-10-26  1099    71    23     0     0   184
  2012-10-29    16     0     0     0     0    81
  2012-10-30     5     0     0     0     0    76
  2012-10-31   650    41    24    19     0   176
  2012-11-01   831   118    11     0     0   169
  2012-11-02   671   158   195    91     0   353
  2012-11-05   887   127    64    81     0   287
  2012-11-06  1343    35     8     0     0   139
  2012-11-07  1018   233   201   112     0   334
  2012-11-08  1140   433   143    16     0   271
  2012-11-09  1192   115    15     0     0   168
  2012-11-12  1008    90    17     1     0   173
  2012-11-13   911    62     5     0     0   160
  2012-11-14  1066   346   219    68     0   317
  2012-11-15   754   110     0     0     0   170
4

1 回答 1

1

我发现由于某种原因,gnuplot 的处理方式不同,NaN并且1/0数学上未定义的表达式会被默默地忽略(例如,请参见此处的注释)。NaN在您的逻辑中使用全零的第 6 列将产生错误

 "<scriptname>", line xx: All points in histogram UNDEFINED

和一个空的png文件。真可惜。但是1/0在你的逻辑中只会产生一个警告

 "<scriptname>", line xx: warning: Skipping data file with no valid points

它将生成带有其余数据的图。由于它完全跳过了数据集,因此“> 60 分钟”也不会出现在您可能想要的图例中。

因此,只需将 plot 命令中第 6 列(以及第 5 列,如果它充满零)的逻辑更改为

plot 'datafile' using (sum [i=2:4] column(i)):xtic(1) title "< 15 min" lc rgb "#00FF50", '' using ($5>0?$5:1/0) title columnhead lc rgb "#F0F000", '' using ($6>0?$6:1/0) title columnhead lc rgb "#FF0000"

除了警告消息告诉您没有数据可以绘制超过 60 分钟(我们知道开始)之外,这应该可以工作。

我使用了 gnuplot v4.6 补丁级别 0。

于 2012-12-30T01:12:48.323 回答