GNU PLOT で多くの行をプロットする必要があります。X 軸に問題はありません。私が直面している問題は、プロットされた線のほとんどが yscale [0-0.05] にあり、60-70 の範囲にあるものはほとんどなく、600-700 にあることです。これらの数値は、y 軸のスケール値に対応しています。しかし、私がプロットした後、私はすべて台無しにされた3セットの線しか見ることができません. 行間がはっきりしない。0 の線と 0.003 の線が 1 本の線のように見えます。yrange[0:0.05] を設定すると、この範囲の間の線がはっきりと見えます。しかし、同じグラフ内のすべての線が必要です。軸とマルチプロットが壊れていると聞いたことがあります..それらは役に立ちますか? それらを実装する方法。誰でも私を助けてください。以下はスクリプトです
set terminal png size 1300,1200 enhanced font 'Verdana,20
set output ' output .png’
set key font 'Verdana,16'
set key bottom outside
set yrange[500:1000]
set xtics("25k" 25000,"50k" 50000,"75k" 75000,"100k" 100000)
set grid
set title 'Performance Metrics'
set ylabel 'Metrices'
set xlabel 'FES'
plot ' input ' using 1:2 title ' A' with linespoints linewidth 4,
' input ' using 1:3 title B'with linespoints linewidth 4,
'input ' using 1:4 title ' c' with linespoints linewidth 4,
'input ' using 1:5 title 'D' with linespoints linewidth 4,
' input ' using 1:6 title 'E' with linespoints linewidth 4,
' input ' using 1:7 title 'F' with linespoints linewidth 4,
' input ' using 1:8 title 'G' with linespoints linewidth 4,
' input ' using 1:9 title ' H ' with linespoints linewidth 4,
' input ' using 1:10 title ' I' Metric ' with linespoints linewidth 4
set output
set terminal windows
input.dat は次のようなものです。
25 0.002 0.05 899 455 444 0.08 0.00004 900 700 0.003
このようにして、他の行があります。最初だけ見せた