How could you place the equation that fits the points?
ggplot(data=iris) +
geom_point( aes(x=Sepal.Length, y=Petal.Length,color=Species)) +
stat_smooth(aes(x=Sepal.Length, y=Petal.Length),method = "loess")
How could you place the equation that fits the points?
ggplot(data=iris) +
geom_point( aes(x=Sepal.Length, y=Petal.Length,color=Species)) +
stat_smooth(aes(x=Sepal.Length, y=Petal.Length),method = "loess")