带表达式评估的 gnuplot 缺失数据

发布于 2024-12-07 09:34:24 字数 381 浏览 0 评论 0原文

我想在 gnuplot 中使用 plot 命令进行表达式求值,即

plot "-" using ($1):($2) with lines
1 10
2 20
3 ?
4 40
5 50
e

但我希望它忽略丢失的数据“?”以这样的方式连接线路(并且不会在 2 和 4 之间断开它)。
我尝试设置数据文件缺少“?”, 但根据在线帮助,它不连接线路。以下可以,但我不能使用表达式求值:

plot "-" using 1:2 with lines
1 10
2 20
3 ?
4 40
5 50
e

有什么想法如何连接线 使用表达式求值?

I want to use the plot command in gnuplot with expression evaluation, i.e.

plot "-" using ($1):($2) with lines
1 10
2 20
3 ?
4 40
5 50
e

But I want it to ignore the missing data "?" in such a way that it connects the line (and doesn't break it between 2 and 4).
I tried set datafile missing "?",
but in agreement with the online-help it does not connect the lines. The following would, but I cannot use expression evaluation:

plot "-" using 1:2 with lines
1 10
2 20
3 ?
4 40
5 50
e

Any ideas how to connect the lines and use expression evaluation?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

青丝拂面 2024-12-14 09:34:24

两列数据

如果您设置数据文件 Data.csv

1 10
2 20
3 ?
4 40
5 50

您可以使用连接线绘制数据

plot '<grep -v "?" Data.csv' u ($1):($2) w lp

多于两列数据

对于多于两列,您可以使用 awk.
使用数据文件 Data.csv

1 10 1
2 20 2
3 ?  3
4 40 ?
5 50 5

您可以在每个绘图的数据文件上运行脚本,如下所示:

plot "<awk '{if($2 != \"?\") print}' Data.csv" u ($1):($2) w lp, \
     "<awk '{if($3 != \"?\") print}' Data.csv" u ($1):($3) w lp

可以找到有关 gnuplot 中脚本编写的参考 此处awk 用户手册此处

Two column data

If you set up a data file Data.csv

1 10
2 20
3 ?
4 40
5 50

you can plot your data with connected lines using

plot '<grep -v "?" Data.csv' u ($1):($2) w lp

More than two column data

For more than two columns you can make use of awk.
With a data file Data.csv

1 10 1
2 20 2
3 ?  3
4 40 ?
5 50 5

you can run a script over the data file for each plot like so:

plot "<awk '{if($2 != \"?\") print}' Data.csv" u ($1):($2) w lp, \
     "<awk '{if($3 != \"?\") print}' Data.csv" u ($1):($3) w lp

A reference on scripting in gnuplot can be found here. The awk user manual here.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文