我正在使用GNU情节绘图。基本上,该图是具有行堆叠选项的直方图类型。 GNU脚本如下,
set boxwidth 0.9 absolute
set style fill solid 1.00 border
set key inside right top vertical Right noreverse noenhanced autotitle nobox
set style histogram rowstacked gap 1 title textcolor lt -1
set datafile missing '-'
set style data histograms
set xtics border in scale 0,0 nomirror rotate by -45
set xtics norangelimit
set xtics ()
set title "XYZ Plot"
plot "plot.dat" using 2:xtic(1) ti col, '' u 3:xtic(1) ti col, '' u 4:xtic (1) ti col, '' u 5:xtic(1) ti col, '' u 6:xtic(1) ti col, '' u 7:xtic(1) ti col, '' u 8:xtic(1) ti col, '' u 9:xtic(1) ti col
pause -1
我垂直条实际上填满了X轴中两点之间的所有空间,而我想要有窄条而不是这个。不幸的是,作为这个论坛的新手,我无法发布图片。
我有另一个脚本(略有不同),但它给出了我想要的情节(即,在时刻瞬间变窄,然后间隙直到x轴上的下一个样本)。我在下面列出了该脚本以供参考,
set boxwidth 0.9 absolute
set style fill solid 1.00 border
set key inside right top vertical Right noreverse noenhanced autotitle nobox
set style histogram clustered gap 1 title textcolor lt -1
set datafile missing '-'
set style data histograms
set xtics border in scale 0,0 nomirror rotate by -45
set xtics norangelimit
set xtics ()
set title "FIFO Plot"
plot "plot.dat" using 2:xtic(1) ti col, '' u 3:xtic(1) ti col, '' u 4:xtic(1) ti col, '' u 5:xtic(1) ti col
pause -1
我想了解一下如何玩弄酒吧的大小...