SciPystats.norm.fit如何确定参数

How does SciPy stats.norm.fit determine the parameters

这可能不是一个适合本论坛的问题,但我只是想知道是否有人知道 SciPy 的 stats.norm.fit() 方法如何确定分布参数?我在某处读到它使用最大似然估计,但我找不到任何官方文档。

提前致谢,

北京日报

scipy.stats.norm 确实使用最大似然估计来计算分布参数。具体来说,它最小化了对数似然。

normrv_continuous的子类,实现了fit方法。因此,您会在 rv_continuous.

的文档中找到 the documentation of fit