> 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