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"
このプロットを生成します:
ゼロ以下のバーの色を赤くすることはできますか?
ありがとう、
スヴェン