ordinary least squares model

geom_lm(formula = y ~ x, ...)

Arguments

...

Value

Examples

library(ggplot2) ggplot(cars) + aes(x = speed, y = dist) + geom_point() + geom_lm()