gpt4 book ai didi

error-handling - GLM 中的奇怪错误

转载 作者:行者123 更新时间:2023-12-03 07:42:06 26 4
gpt4 key购买 nike

我正在创建多个泊松回归,每个模型都有不同的结果。在这个与其他结果没有什么不同的特殊结果(所有二进制,0 或 1)上,我得到了这个我以前从未见过的奇怪错误。

mix_1<- glm(count~ offset(log(time)) + age + gender, data=x[x$diagnosis=="match",], family=poisson)

glm 模型没有任何问题,我没有按预期工作。尝试执行 cbind 并对系数求幂时收到错误消息。
mix_2 <- cbind(exp(coef(mix_1)), exp(confint(mix_1)))

这是我得到的错误:
   Waiting for profiling to be done...
Error in glm.fit(x = Xi, y = Y, weights = W, etastart = LP, offset = o, :
NA/NaN/Inf in 'x'
warning
Warning messages:
1: glm.fit: fitted rates numerically 0 occurred

我认为这个问题不需要数据子集,因此我没有提供。但如果我真的没有必要,请告诉我,我会创建一个子集。

非常感谢所有帮助!

最佳答案

我刚刚遇到同样的问题。在 Andrew Gelman 的博客 here 上有一些关于 MASS 和 glm.fit 问题的讨论。 ,这可能至少略有相关。

问题似乎出在 confint()功能。从confint手册:

There are stub methods for classes "glm" and "nls" which invoke those in package MASS which are based on profile likelihoods.

...

confint(glm.D93) # needs MASS to be present on the system

confint.default(glm.D93) # based on asymptotic normality



我发现如果我使用 confint.default()功能问题消失。我希望我有更多的答案。

关于error-handling - GLM 中的奇怪错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27669101/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com