我无法描述情节的样子,所以我只使用“奇怪”,因为我不知道为什么 gnuplot 会给我这样的情节。这是我想做的事情。
我有一个包含两列的数据文件,第一列是文件名,第二列是每个文件的大小。每列超过 200 万行。我只想绘制文件大小的分布。这是我的代码
set terminal postscript landscape enhanced mono dashed lw 2 "Times" 18
outputfile = "sizedist.ps"
set output outputfile
binwidth = 0.05
bin(x,width)=width*floor(x/width)
plot [0:3.5][]'sizedist.out' using (bin(log10($2/1024),binwidth)):(1.0) smooth freq with boxes t "Binsize=0.05 dex"
set terminal x11
理想情况下,它应该是一个类似高斯的条形图,但它有许多其他图叠加(见我的附件)。任何有关 gnuplot 的专家都知道为什么会这样吗?