> May I know how does one superimpose the 95% confidence and prediction
> intervals on the linear regression line of a scatterplot?
You could use ggplot:
install.packages("ggplot")
library(ggplot)
qplot(wt, mpg, data=mtcars, type=c("point","smooth"), method=lm)
(which gives the 95% confidence interval)
Hadley
______________________________________________
[email protected] mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide! http://www.R-project.org/posting-guide.html