我在 R 的 fitdistrplus 包下使用 GoFStat 遇到了这个问题。这是我的代码:
col = c(2,2,3,2,2,2,2,3,4,3,1,4)
fw = fitdist(col, "weibull", lower = c(0,0))
fg = fitdist(col, "gamma", lower = c(0,0))
fln = fitdist(col, "lnorm")
ddlist = list(
fw,
fln,
fg
)
gofstat(ddlist)
它给出了错误:
ans[!test & ok] <- rep(no, length.out = length(ans))[!test & : 替换长度为零另外:警告消息:在 rep(no, length.out = length( ans)) : 'x' 为 NULL,因此结果将为 NULL
有什么帮助吗?我在做傻事吗?
谢谢