【发布时间】:2015-01-07 12:30:45
【问题描述】:
我在 Gnuplot 填充曲线显示间隙时遇到问题。我使用的是 Fedora 提供的版本 4.6 补丁级别 5。
这就是我正在做的事情:
- - 生成一个平滑值表,如下所示:
set table 'smoothedhdata'
plot 'data_file' using 1:2 smooth cspline
unset table
- - 取消设置表格,设置输出,设置多图,设置yrange
- - 剧情:
plot 'smootheddata' using 1:2 with filledcurves x1 lc rgb "forest-green" title "Some Title";
出现的问题是,数据中有几个值超出了 yrange 限制的区域。对于这些值,使用 pngcairo 以及使用 svg 的输出中存在差距。也许这对于更熟悉 gnuplot 的人来说是微不足道的,但是到目前为止我还没有找到解决方案。有没有人看到这种行为并知道解决方法,或者这可能是 Gnuplot 中的某个错误?
- - 这是一个在绿色图表中显示其中一些差距的图:
【问题讨论】: