search for: burn02

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

Did you mean: burn01
2003 Nov 04
1
glm offset and interaction bugs (PR#4941)
...-gnu (Suse 8.2) Submission 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(to...