geom_lm_pred_int_segments.Rd
Drawing prediction interval for OLS linear model as segments
geom_lm_pred_int_segments( mapping = NULL, data = NULL, position = "identity", na.rm = FALSE, show.legend = NA, inherit.aes = TRUE, ... )
... |
---|
library(ggplot2) ggplot(cars) + aes(x = speed, y = dist) + geom_point() + geom_lm() + geom_lm_pred_int_segments(num_breaks = 100)