【发布时间】:2017-12-25 18:21:45
【问题描述】:
有没有人在使用 ExtDist Package 的 Weibull 分布方面遇到问题?
形状参数未知的分布的参数估计 示例来自:Rinne (2009) 数据集 p.338 和示例 pp.418-419 参数估计为 shape = 99.2079 和 scale = 2.5957。 该数据和 Rinne 的参数估计的对数似然是 -1163.278。
data <- c(35,38,42,56,58,61,63,76,81,83,86,90,99,104,113,114,117,119,141,183)
est.par <- eWeibull(X=data, method="numerical.MLE"); est.par
plot(est.par)
但是,当我运行它时,我得到以下输出:
Parameters for the Weibull distribution.
(found using the numerical.MLE method.)
Parameter Type Estimate S.E.
shape shape 5.82976007 1.79326460
scale scale 0.06628166 0.02129258
这显然是错误的,但我不确定我是否犯了错误或包中是否存在错误?
【问题讨论】:
-
您是否阅读了示例的下一部分? “# eWeibull 计算的估计值与 Rinne (2009) 给出的估计值不同。但是,eWeibull 的参数估计值似乎有所改进,因为 -99.09037 的对数似然更大(如下面的 lWeibull 给出)。”
-
嗨,Ben,是的,但我从 5.82976007 的代码中得到的答案肯定不是很接近,输出应该在 99 范围内
标签: r distribution weibull