Open ajkl opened 9 years ago
Afraid not. There is a geometry to draw the shaded region (Geom.ribbon), but my loess implementation isn't 100% feature complete, and doesn't generate CIs as of yet.
Thanks dcjones for the quick reply. I will look forward to the enhancement!
ggplot2 has a way to show the shaded confidence area in geom_smooth
ggplot(dat, aes(x=xvar, y=yvar)) + geom_point(shape=1) +
geom_smooth(method=lm) # Add linear regression line (by default includes 95% confidence region)
Is there a way to show the shaded region in Geom.smooth ?