使用2D直方图箱进行绘图

时间:2017-09-08 23:17:19

标签: gnuplot histogram2d

我在帖子Normalizing histogram bins in Gnuplot中看到,可以将一些x样本合并并绘制直方图,

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区域))。

如何使用Gnuplot计算2d-bin_plot?

非常感谢您的帮助

0 个答案:

没有答案