次のデータ ファイルがあるとしますso-qn.dat
。
Type on on-err off off-err
good 75 5 55 4
bad 15 2 30 3
#other 10 1 15 2
これには、列 2 と 4 の値と、列 3 と 5 の対応するエラー デルタが含まれます。
列積み上げヒストグラムを作成できます。
#!/usr/bin/gnuplot
set terminal png
set output 'so-qn.png'
set linetype 1 lc rgb "blue" lw 2 pt 0
set linetype 2 lc rgb "dark-red" lw 2 pt 0
set style data histograms
set style histogram columnstacked
set style fill solid
set ylabel "% of all items"
set yrange [0:100]
set boxwidth 0.75
set xtics scale 0
set xlabel "Option"
plot 'so-qn.dat' using 2 ti col, \
'' using 4:key(1) ti col
しかし、これにエラーバーを追加する方法がわかりません。私がこれまでに得た最も近いものは
plot 'so-qn.dat' using 2 ti col, '' using 2:3 with yerrorbars lc rgb 'black' ti col, \
'' using 4:key(1) ti col, '' using 4:5:key(1) with yerrorbars lc rgb 'black' ti col
生産する
しかし、エラーバーの 1 つだけが正しい場所にあり (左下のエラーバーがどこから y を取得するのか実際にはわかりません)、1 つが完全に見えません (右のスタックの後ろに隠れていますか?)、そしてエラーバーが欲しいですキーに表示されないようにします。
列積み上げヒストグラムとエラー バーを組み合わせることは可能ですか?