python直方图如何找到具有最大频率的bin的中点

时间:2016-11-27 02:28:52

标签: python matplotlib histogram frequency bins

我想找到最大频率的bin的中点。我怎样才能获得价值?

使用matplotlib我用代码绘制直方图:

num_bins = 25
weights = (1 / data['day'].shape[0]) * np.ones_like(data['day'])
n, bin_cuts, patches = plt.hist(data['day'], num_bins, weights=weights)

得到25个箱子的直方图。 我使用.max()但它给出了整个数据的唯一最大点。

0 个答案:

没有答案