calculating confidence interval of coefficient in poisson regression

不羁的心 提交于 2019-12-11 18:13:08

问题


The poisson regression looks as follows in My R-code:

poissmod <- glm(aerobics$y ~ factor(aerobics$x1) + factor(aerobics$x2) + aerobics$x3 + aerobics$x4, family = poisson)
poissmod

Now I have to compute a confidence interval for the factor aerobics$x1 (in a model without aerobics$x1 since this is not significant).

This might look very easy, but I am not familiar with R and I can 't find the answer anywhere...

Anyone who can help me?

Thanks a lot in advance!


回答1:


See e.g. the confint function in the MASS package (http://stat.ethz.ch/R-manual/R-devel/library/MASS/html/confint.html):

ldose <- rep(0:5, 2)
numdead <- c(1, 4, 9, 13, 18, 20, 0, 2, 6, 10, 12, 16)
sex <- factor(rep(c("M", "F"), c(6, 6)))
SF <- cbind(numdead, numalive = 20 - numdead)
budworm.lg0 <- glm(SF ~ sex + ldose - 1, family = binomial)
confint(budworm.lg0)
confint(budworm.lg0, "ldose")

The example is for a logistic regression, but this will also work for a poisson regression.

Here is another example from the stats package documentation for a poisson regression (https://stat.ethz.ch/R-manual/R-devel/library/stats/html/confint.html):

## from example(glm)
counts <- c(18,17,15,20,10,20,25,13,12)
outcome <- gl(3, 1, 9); treatment <- gl(3, 3)
glm.D93 <- glm(counts ~ outcome + treatment, family = poisson())
confint(glm.D93) # needs MASS to be present on the system
confint.default(glm.D93)  # based on asymptotic normality


来源:https://stackoverflow.com/questions/22223301/calculating-confidence-interval-of-coefficient-in-poisson-regression

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!