The R Project SVN R

Rev

Rev 61160 | Rev 64215 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 61160 Rev 61168
Line 52... Line 52...
52
confint(fit)
52
confint(fit)
53
confint(fit, "wt")
53
confint(fit, "wt")
54
 
54
 
55
## from example(glm) (needs MASS to be present on the system)
55
## from example(glm) (needs MASS to be present on the system)
56
counts <- c(18,17,15,20,10,20,25,13,12)
56
counts <- c(18,17,15,20,10,20,25,13,12)
57
outcome <- gl(3,1,9); treatment <- gl(3,3)
57
outcome <- gl(3, 1, 9); treatment <- gl(3, 3)
58
glm.D93 <- glm(counts ~ outcome + treatment, family = poisson())
58
glm.D93 <- glm(counts ~ outcome + treatment, family = poisson())
59
confint(glm.D93)
59
confint(glm.D93)
60
confint.default(glm.D93)  # based on asymptotic normality
60
confint.default(glm.D93)  # based on asymptotic normality
61
}
61
}
62
\keyword{models}
62
\keyword{models}