Skip to content
Prev 13836 / 398502 Next

glm.nb, anova.negbin

That's an error in anova.glm: try it with glm rather than glm.nb.

The line in anova.glm like

            fit <- method(x = x[, varseq <= i], y = object$y,

should be

            fit <- method(x = x[, varseq <= i, drop = FALSE], y = object$y,

You are really good at finding long-standing bugs!
On Wed, 26 Sep 2001, juli g. pausas wrote: