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?
significantif the confidence intervals do NOT contain the value 1.0. Yes, they are calculated. The short bookInteraction effects in logistic regressionby James Jaccard maybe of great assistance. I would suggest usingconfintfrom theMASSpackage. You might get more appropriate answers onstats.stackexchange– Arun Jan 20 at 9:53confint()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:47confint.default(.)as explained here? – Arun Jan 20 at 12:34summary(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 whatpredict.lm()does but for a GLM, based only on standard errors of predictions. – Gavin Simpson Jan 20 at 12:43