I have this scatterplot at the moment.
ggplot(pl, mapping = aes(x, y))+
geom_point()+
scale_x_continuous(limits = c(0,100))+
scale_y_continuous(limits = c(0,100))+
geom_abline(slope = 1, intercept = 1, color = "red")
which produces this
I want to colour any points below the diagonal red and any above the diagonal green. So basically colour on the condition x < y. Thank you.