gnuplotスクリプトのバーの色を動的に変更することは可能ですか?次のスクリプトがあります
reset
fontsize = 12
set term postscript enhanced eps fontsize
set output "bargraph_speedup.eps"
set style fill solid 1.00 border 0
set style histogram
set style data histogram
set xtics rotate by -45
set grid ytics linestyle 1
set xlabel "Benchmarks" font "bold"
set ylabel "Relative execution time vs. reference implementation" font "bold"
set datafile separator ","
plot 'bm_speedup.dat' using 2:xtic(1) ti "Speedup" linecolor rgb "#00FF00"
これはこのプロットを生成します:
ゼロ未満のバーの色を赤にすることは可能ですか?
おかげで、
スヴェン
boxes
スタイルを使用して、この動作を模倣できます。
私のテストデータ:
Zip 2
baz 2
bar -1
cat 4
foo -3
そしてgnuplotでプロットします:
set style line 1 lt 1 lc rgb "green"
set style line 2 lt 1 lc rgb "red"
set style fill solid
plot 'test.dat' u (column(0)):2:(0.5):($2>0?1:2):xtic(1) w boxes lc variable
# #xval:ydata:boxwidth:color_index:xtic_labels
データファイルを正の値と負の値の2つの部分に分割し、別々にプロットすることができます。
plot 'bm_speedup_pos.dat' using 2:xtic(1) ti "Faster" linecolor rgb "#00FF00", \
'bm_speedup_neg.dat' using 2:xtic(1) ti "Slower" linecolor rgb "#FF0000"
または、少数のグラフを数回だけ生成する必要がある場合、一般的な手法は、gnuplotで生のグラフを生成し、画像エディターで後処理して色を調整することです。その道を進むなら、私はgnuplotにグラフをSVG形式で生成させることをお勧めします。これにより、どのビットマップ形式よりもはるかに見栄えの良いグラフが得られます。
実際には、linecolor rgb変数を使用して、次のような色を与えることもできます。
plot 'bm_speedup.dat' using 2:xtic(1):($2 >= 0 ? 0x00FF00 : 0xFF0000) ti Speedup lc rgb variable
ヒストグラムがそれを可能にするようには思えません。このようになるかもしれません:
set boxwidth 0.3
f(v)=v<0?1:2
plot 'bm_speedup.dat' using 0:2:(f($2)):xticlabels(1) with boxes ti "Speedup" lc variable