Hi, How do I extract the standard errors of the coefficients in a glm.nb model? Thanks. -- View this message in context: http://www.nabble.com/extracting-standard-errors-in-glm.nb-tp22019202p22019202.html Sent from the R help mailing list archive at Nabble.com.
jpl <s-jlubben1 <at> math.unl.edu> writes:> > How do I extract the standard errors of the coefficients in a glm.nb model?library(MASS) quine.nb1 <- glm.nb(Days ~ Sex/(Age + Eth*Lrn), data = quine) sumnb1 = summary(quine.nb1) sumnb1 str(sumnb1) # tells you about the anatomy. Check for $coefficients Dieter