我正在尝试从这个答案中重现代码,但是这样做有问题。我正在使用包中的 gumbel 发行版VGAM
和fitdistrplus
. 这样做时会出现问题:
fit = fitdist(data1, 'gumbel', start = list(location = 0, scale = 1))
Error in mledist(data, distname, start, fix.arg, ...) :
'start' must specify names which are arguments to 'distr'.
好像location
而且scale
不是 *gumbel 的论点。
dgumbel
, pgumbel
,rgumbel
和qgumbel
由 正确VGAM
。然而,该包还提供了一个名为 的函数gumbel
,具有不同的语法。这可能会导致问题吗?
编辑:是的,它确实引起了问题:使用包FAdist
代替工作得很好。