【发布时间】:2021-05-21 22:57:43
【问题描述】:
正如您在这篇帖子gnuplot "stats" command unexpected min & "out of range" results 中看到的那样,gnuplot 统计信息将列中可用的最小非负数作为最小值。
如何包含负数?我的列有负数,我希望有一个负数作为应用于轴范围的最小值。
顺便说一句,我在打电话:
stats mytextfile u 2:3 nooutput
但实际上稍后我必须再次调用它,因为我想从 4 列中获取最小值和最大值。我可以一次做吗?还是我必须按照我正在做的事情做以下事情?:
stats mytextfile u 2:3 nooutput
do whatever
stats mytextfile u 4:5 nooutput
do whatever
【问题讨论】:
标签: gnuplot