In the following reprex I want to keep the legend associated with geom_line and get rid of the legend associated with geom_point. Any suggestions gratefully accepted.
``` r
library(tidyverse)
t <- tibble(x = c(1,2,3), y = c(3,1,2), s = c(1,2,3))
t |> ggplot(aes(x,y,size = s)) +
geom_point(alpha = 0.3, color = "blue") +
geom_abline(aes(color = "red", intercept = 1, slope = 1)) +
geom_abline(aes(color = "green", intercept = 0,slope=.5))