Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In R predict.lm computes predictions based on the results from linear regression and also offers to compute confidence intervals for these predictions. According to the manual, these intervals are based on the error variance of fitting, but not on the error intervals of the coefficient.

On the other hand predict.glm which computes predictions based on logistic and Poisson regression (amongst a few others) doesn't have an option for confidence intervals. And I even have a hard time imagining how such confidence intervals could be computed to provide a meaningful insight for Poisson and logistic regression.

Are there cases in which it is meaningful to provide confidence intervals for such predictions? How can they be interpreted? And what are the assumptions in these cases?

share|improve this question
This is more of a statistical question. To answer your question, Yes. For example, in case of logistic regression, you can see that the p-values would be significant if the confidence intervals do NOT contain the value 1.0. Yes, they are calculated. The short book Interaction effects in logistic regression by James Jaccard maybe of great assistance. I would suggest using confint from the MASS package. You might get more appropriate answers on stats.stackexchange – Arun Jan 20 at 9:53
Maybe do it from the empirical distribution, that is, bootstrap the sample a couple of times and then you can compare your sample value against the empirical distribution. – Dualinity Jan 20 at 10:19
confint() will give profile likelihood intervals on model terms, but the OP wants a prediction interval. IIRC there is no distinction between confidence and prediction intervals in the GLM. – Gavin Simpson Jan 20 at 11:47
@Gavin if I understand you correctly, the OP wants CIs based on just SE? If so, he could use confint.default(.) as explained here? – Arun Jan 20 at 12:34
But what does that give you that the standard errors quoted in summary(mod) doesn't? predict.lm() use the model to give values of response for values of the predictors. It can give prediction and confidence intervals. In a GLM, IIRC, these are the same thing. Hence what I show in the answer is how to do what predict.lm() does but for a GLM, based only on standard errors of predictions. – Gavin Simpson Jan 20 at 12:43
show 3 more comments

1 Answer

The usual way is to compute a confidence interval on the scale of the linear predictor, where things will be more normal (Gaussian) and then apply the inverse of the link function to map the confidence interval from the linear predictor scale to the response scale.

To do this you need two things;

  1. call predict() with type = "link", and
  2. call predict() with se.fit = TRUE.

The first produces predictions on the scale of the linear predictor, the second returns the standard errors of the predictions. In pseudo code

mod <- glm(y ~ x, data = foo, family = binomial)
preddat <- with(foo, data.frame(x = seq(min(x), max(x), length = 100))
preds <- predict(mod, newdata = preddata, type = "link", se.fit = TRUE)

preds is then a list with components fit and se.fit.

The confidence interval on the linear predictor is then

critval <- 1.96 ## approx 95% CI
upr <- preds$fit + (critval * preds$se.fit)
lwr <- preds$fit - (critval * preds$se.fit)
fit <- preds$fit

critval is chosen from a t or z (normal) distribution as required (I forget exactly now which to use for which type of GLM and what the properties are) with the coverage required. The 1.96 is the value of the Gaussian distribution giving 95% coverage:

> qnorm(0.975) ## 0.975 as this is upper tail, 2.5% also in lower tail
[1] 1.959964

Now for fit, upr and lwr we need to apply the inverse of the link function to them.

fit2 <- mod$family$link.inv(fit)
upr2 <- mod$family$link.inv(upr)
lwr2 <- mod$family$link.inv(lwr)

Now you can plot all three and the data.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.