0

我有一个数据文件,其架构为“对象参数 output1 output2 ...... outputk”。例如。

A 0.1 0.2 0.43 0.81 0.60
A 0.2 0.1 0.42 0.83 0.62
A 0.3 0.5 0.48 0.84 0.65
B 0.1 0.1 0.42 0.83 0.62
B 0.2 0.1 0.82 0.93 0.51 B 0.3 0.3 0.51
B 0.3 0.3 0.5.4

我想创建多个绘图,每个绘图对应一个对象,x 轴是参数,系列是输出。目前,我编写了一个 python 脚本,它将每个对象的行转储到不同的文件中,然后调用 gnuplot。有没有更优雅的方式来绘制它?

4

1 回答 1

0

你正在寻找这个:

plot 'data.txt' using (strcol(1) eq "A" ? $2 : 1/0):4 with line

结果是: 在此处输入图像描述

如果您想为每个对象创建绘图,请使用:

do for [object in "A B"] {
  reset
  set title sprintf("Object %s",object)
  plot 'data.txt' using (strcol(1) eq object ? $2 : 1/0):4 notitle with line
  pause -1
}

只需按下Enter下一个情节。当然,您也可以将这些图导出到文件中。

于 2013-09-27T07:40:14.710 回答