How do you combine two or more fitted models into one scatterplot?
Here is my code.
variable data contains the data for the number of trees and number of flowers.
plot(numTree ~ numFlower, col = "red", data = data)
plot(numTree ~ 1 + numFlower, col = "green", data = data)
plot(numTree ~ 2 + numFlower, col = "blue", data = data)
I only know how to plot 3 different scatterplots using this. But how do I make all 3 of them fit into one scatterplot?