Reputation: 13
I'm analyzing a linear model with 2 factors and I need to find a confidence interval for the response variable. As I understand it confint()
and predict(, interval='confidence')
both find confidence intervals so what is the difference between them?
Upvotes: 1
Views: 1695
Reputation: 226162
confint()
finds confidence intervals on the model parameterspredict(., interval="confidence")
finds confidence intervals on the model predictionsUpvotes: 2