警告:标题是“数字范围”,偏移量为(字符0,0,0)

时间:2018-01-16 13:07:51

标签: gnuplot

当我运行gnuplot时,我会向stderr发出警告;但是,据我所知,生成的情节是完全正确的。有人可以帮我消除警告吗?警告如下所示。

title is "number-ranges", offset at (character 0, 0, 0)

我正在阅读http://gnuplot.sourceforge.net/docs_4.2/node275.html 有关title命令语法的信息。

这是一个示例gnuplot输入文件。

# summary number-ranges
set term png
set key below
set title "number-ranges"
show title
set logscale xy
set style line 5 linewidth 1 linecolor rgb "#008941"
set style line 6 linewidth 1 linecolor rgb "#006fa6"
plot    "-" using 1:2 with lines ls 5 title "bdd-decompose-types-strong",\
   "-" using 1:2 with lines ls 6 title "bdd-decompose-types-weak" 
#008941 BDD-DECOMPOSE-TYPES-STRONG
24 2.0000001e-4
25 2.0000001e-4
42 0.0029090906
48 0.0033076922
end
# 006fa6 BDD-DECOMPOSE-TYPES-WEAK
16 1.25e-4
20 1.4285716e-4
30 4.545455e-4
36 7.5000006e-4
48 0.0013846154
end

1 个答案:

答案 0 :(得分:2)

此消息正是您脚本中的show title所做的

set title "number-ranges"
show title

无论出于何种原因使用它,如果你不需要它;)