Linear regression is a method for determining a relationship between two variables for the purpose of predicting where any given X data point should fall on the Y axis.
ggplot(iris, aes(Sepal.Length, Petal.Length)) + geom_point() +
geom_smooth(method = "lm", se = FALSE) + # Create the regression line.
labs(title = "Sepal Length vs Petal Length in Irises",
subtitle = "Example of linear regression in blue")