search for: totalseeds

Displaying 1 result from an estimated 1 matches for "totalseeds".

Did you mean: totalreads
2003 Nov 04
1
glm offset and interaction bugs (PR#4941)
...on from: (NULL) (134.84.86.22) Two bugs (perhaps related, perhaps independent) revealed by the same Poisson regression with offset mydata <- read.table(url("http://www.stat.umn.edu/geyer/5931/mle/seeds.txt")) out.fubar <- glm(seedlings ~ burn01 + vegtype * burn02 + offset(log(totalseeds)), data = mydata, family = poisson) summary(out.fubar) out.barfu <- glm(seedlings ~ burn01 + vegtype * burn02, offset = log(totalseeds), data = mydata, family = poisson) summary(out.barfu) out.ok <- glm(seedlings ~ vegtype * burn02 + burn01, offset = log(totalseeds), data = mydata, fa...