标签: 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()但它给出了整个数据的唯一最大点。