我确信这个话题以前出现过,但我似乎找不到真正的解决方案。
如您所知,当指定边缘强加条件时,numpy.histogram 是错误的
edges = array, where the array (or list) contains the coordinates of the edges.
在文档中,建议使用“密度”= True。但是,在 numpy 网站上,这是正确规范直方图的条件
"Note that the sum of the histogram values will not be equal to 1 unless bins of unity width are chosen"
那么,有谁知道如何制作清单
values = histogram(list, bins = array (or list))
从归一化分布?
谢谢
布莱斯