计算泊松回归系数的置信区间

时间:2014-03-06 11:35:00

标签: r regression confidence-interval poisson

泊松回归在我的R代码中如下所示:

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

现在我必须计算因子aerobics$x1的置信区间(在没有aerobics$x1的模型中,因为这不重要)。

这可能看起来很容易,但我不熟悉R,我无法在任何地方找到答案......

任何可以帮助我的人?​​

提前多多感谢!

1 个答案:

答案 0 :(得分:2)

参见例如confint包中的MASS函数(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")

该示例用于逻辑回归,但这也适用于泊松回归。

以下是泊松回归的stats包文档中的另一个示例(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