gnuplot直方图集群栏不显示

时间:2017-10-03 17:18:45

标签: gnuplot histogram

我在x轴上有7个不同的名字,每7个有4个相应的y值(4个柱), 但它没有给我带有看起来像的脚本的聚类条形图直方图。

set yrange [0:4]

set boxwidth 0.1 
set style data histograms
set style histogram cluster gap 0.1 
set style fill solid 1.0 border -1
set auto x

plot    "dataset.dat" using 2:xticlabel(1) with boxes ls 1 title col, \
        "dataset.dat" using 3:xticlabel(1) with boxes ls 2 title col, \
        "dataset.dat" using 4:xticlabel(1) with boxes ls 3 title col, \
        "dataset.dat" using 5:xticlabel(1) with boxes ls 4 title col 

脚本有问题吗?

enter image description here

1 个答案:

答案 0 :(得分:0)

在gnuplot中,您可以通过不同的方式指定实际的绘图样式:

  • set style data ...为所有数据图设置全局默认绘图样式。
  • plot ... with ...为该独特情节设定了绘图风格。这将覆盖任何全局绘图样式。

这意味着,在您的示例中with boxes会覆盖set style data histogram。只需删除with boxes部分即可获得直方图。