计算pylab.hist()中频率最高的垃圾箱

时间:2018-08-29 14:35:50

标签: matplotlib python-3.6

我想找出与pylab.hist()函数中最高y(计数/频率)相对应的x(bin)。

y,bins,_ = pylab.hist(sizes, bins=100)
print(f'Max of {y.max()} sequences found with {bins.max()} bp')

我获得了y.max()的正确值,但未报告与y.max()对应的bin。而是报告最大值。如何修改呢?

谢谢。

0 个答案:

没有答案