Hi,
I need to change the colours of my plot so that what is currently black is cyan- the colours are set correctly in my legend but I can't figure out how to change the colour of the scatter plot after already having used col=summer. Could anyone give advice?
plot(D.Temp~C.Temp, pch=1, data=climate, xlab="Temperature at C", ylab="Temperature at D", col=summer)
legend("topleft",legend=c("Summer","Winter"),col=2:5,pch=1)
lines(lowess(climate$D.Temp, climate$C.Temp), col='blue')