如何找到概率分布函数图的最大值位置?

时间:2016-02-27 19:43:10

标签: python python-2.7 python-3.x numpy scipy

给定概率分布函数(至少以y和P(y)两个数组的形式),我知道如何通过索引使用以下行找到最大概率:

 i_max=np.argmax(P)
 max=P[i_max]

但是,我还需要知道沿y轴的最大位置。我无法在scipy中找到任何声明。从理论上讲,这很容易做到。但是,我不知道如何在python3中实现它。任何帮助将不胜感激。

1 个答案:

答案 0 :(得分:0)

之前我遇到过类似的问题,我也不知道argmax方法。 我做的是 index = np.where(np.max(P)== P) 它可能会帮助你