This is my code:
ggplot(data = covid, aes(x=`medinc1317`+1,y=`population`+1))+
geom_point()+
scale_x_log10("Median Income", breaks=c(1,30001,60001,90001,120001), labels=c("0","30000","60000","90000","120000"))+
scale_y_log10("County Population",breaks=c(1,1001,10001,100001,1000001), labels=c("0","1000","10000","100000","1000000"))+
ggtitle("Covid-19 Cases as a Proportion of County Population vs Median Income")
I'm trying to colour the data for the x axis and y axis different colours, but the colour function isn't doing anything (doesn't even pop up!). Any help would be appreciated.