我在 Gnuplot 中的 Normalizing histogram bins的帖子中看到过,它可以对一些 x 样本进行 bin 化并绘制直方图,其中
binwidth=5
bin(x,width)=width*floor(x/width) + binwidth/2.0
plot 'file.dat' using (bin($1, binwidth)):(1/(binwidth*num_points) smooth freq with boxes
我想获得与该帖子相同的结果,但使用 2D 数据集((x,y)点)并绘制该数据的一种类型的热图,例如使用表示概率或强度的热图(即(样本数)/(bin 区域))。
我如何计算 2d-bin_plot Gnuplot
?
非常感谢您的帮助