标签: gnuplot
range bar graph 如何使用gnuplot创建图像中显示的图形? 我想要一个条形图,其中每个条形图都有最大值和最小值。 这可能在gnuplot中吗? 谢谢你的帮助。
答案 0 :(得分:0)
您正在寻找boxxyerrorbars风格。
boxxyerrorbars
例如,给定内容为
test.dat
#ymin ymax 2 4 3 6 1 4 2 3
gnuplot命令
boxwidth = 0.5 set style fill solid set yrange [0:8] plot "test.dat" u 0:(($1+$2)/2.):(boxwidth/2.):(($2-$1)/2.) w boxxyerrorbars
给