data1.txtのように2つのデータファイルがあります。
31231
32312
32323
32323
data2.txt:
32323
54223
32456
45321
同じグラフに2つのプロットを描きたいのですが、どうすればそれgnuplot
を実現できますか?ゆうありがとうございます。
data1.txtのように2つのデータファイルがあります。
31231
32312
32323
32323
data2.txt:
32323
54223
32456
45321
同じグラフに2つのプロットを描きたいのですが、どうすればそれgnuplot
を実現できますか?ゆうありがとうございます。
コンマで区切られた2つの引数を使用して、1つのplot
コマンドで同じグラフに2つのプロットを取得できます。datafile
例えば
plot [-1:5] 'data1.txt' with points, 'data2.txt' with points
このようなものを取得します:
これは私のために働きます:
reset
set term pngcairo
set output 'wall.png'
set xlabel "Length (meter)"
set ylabel "error (meter)"
set style line 1 lt 1 linecolor rgb "yellow" lw 10 pt 1
set style line 2 lt 1 linecolor rgb "green" lw 10 pt 1
set style line 3 lt 1 linecolor rgb "blue" lw 10 pt 1
set datafile separator ","
set key
set auto x
set xtics 1, 2, 9
set yrange [2:7]
set grid
set label "(Disabled)" at -.8, 1.8
plot "file1.csv" using 1:2 ls 1 title "one" with lines ,\
"file2.csv" using 1:2 ls 2 title "two" with lines ,\
"file3.csv" using 1:2 ls 3 title "three" with lines
set output