1

我有大量数据并goodfitvcd包中申请,如下所示:

fishdata <- read.csv("http://dl.dropbox.com/s/4w0utkqdhqribl4/fishdata.csv", header=T)
attach(fishdata)
require(vcd)
dat <- fishdata$inlandfao
gf <- goodfit(dat, method="ML")
gf2 <- goodfit(dat, method="MinChisq")
    > summary(gf); summary(gf2)

         Goodness-of-fit test for poisson distribution

                 X^2 df P(> X^2)
Likelihood Ratio Inf 60        0

         Goodness-of-fit test for poisson distribution

        X^2      df P(> X^2)
Pearson NaN 1218936      NaN
Warning message:
In summary.goodfit(gf2) : Chi-squared approximation may be incorrect

很明显,我的数据不遵循泊松分布。我只想知道为什么我得到这个输出(Inf,0 p-value & NaN)。我在这里写这个而不是交叉验证,因为我认为它更多的是计算问题而不是统计问题。

我的数据中也没有 0,所以这不是问题。我认为这是因为计数非常高。

4

0 回答 0