我有一些数据需要测试,看看它是否来自具有未知参数的Weibull 分布。在R中我可以使用https://cran.r-project.org/web/packages/KScorrect/index.html但我在 Python 中找不到任何东西。
使用 scipy.stats 我可以拟合参数:
scipy.stats.weibull_min.fit(values)
然而,为了把它变成一个测试,我认为我需要执行一些蒙特卡罗模拟(例如https://en.m.wikipedia.org/wiki/Lilliefors_test)我不知道该怎么做。
如何在 Python 中进行这样的测试?