如何在gnuplot中制作范围条形图?

时间:2017-09-13 02:51:42

标签: gnuplot

range bar graph 如何使用gnuplot创建图像中显示的图形? 我想要一个条形图,其中每个条形图都有最大值和最小值。 这可能在gnuplot中吗? 谢谢你的帮助。

1 个答案:

答案 0 :(得分:0)

您正在寻找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

enter image description here