I have a large number of plots with 2 groups. I want to set the colours to "purple" and "navyblue".
I can obviously add:
p + scale_color_manual(values=c("purple", "navyblue"))
to all my plots.
Is there a way to set these two colours at the beginning of my code with a single line of code, and avoid repeating the scale_color_manual() call for every single plot?