0

マスターごとに、名前と温度の関数で線をプロットするにはどうすればよいですか。最後に、各マスターに 1 つずつ、3 つの行が必要です。私のファイルデータは:

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 に答える