0

我如何为每个主人绘制一条与 nombre 和 temps 函数的线。最后,我想为每个主人写三行。我的文件数据是:

score;master;nombre;temps
-60;pastel1;7;100
30;pastel2;0;100
100;pastel3;0;100
-60;pastel1;3;220
30;pastel2;4;220
100;pastel3;0;220
-60;pastel1;0;440
30;pastel2;4;440
100;pastel3;3;440
-60;pastel1;0;445
30;pastel2;3;445
100;pastel3;4;445
4

1 回答 1

1

你可以这样做:

plot '<grep pastel1 test.dat' u 3:4 w lines,\
     '<grep pastel2 test.dat' u 3:4 w lines,\
     '<grep pastel3 test.dat' u 3:4 w lines

或使用迭代的速记:

plot for [i=1:3] sprintf("<grep pastel%d test.dat",i) u 3:4 w lines
于 2012-12-09T06:16:46.780 回答