I have 24 groups that I have plotted using geom_line in ggplot2. I was wondering whether there is a quick way to change the colour of one of those particular groups to black without specifying the colours of the other 23?
My code:
ggplot(max, aes(x = dap,y = cf, group=variables, colour = variables)) +
geom_line(size=0.5)