I am pretty new to ggplot2, and have so far succeeded in creating a 3 layered geom_line plot. Since the graph is for my color-blind supervisor, the line colors have to change (especially the red and green). I have tried different things, but cannot get it to work. Any good suggestions?
Thanks!
p = ggplot() + 
    geom_line(data = my_data, aes(x = E, y = N50_A, colour = "A")) +
    geom_line(data = my_data, aes(x = E, y = N50_C, colour = "C")) +
    geom_line(data = my_data, aes(x = E, y = N50_D, colour = "D")) + 
    xlab('E') + ylab('N50') + 
    theme_bw() + ggtitle("E90N50") +
    theme(legend.position = "bottom", 
          legend.title = element_blank(), 
          plot.title = element_text(hjust = 0.5)) 
p

 
    