Hi there,
I'm trying to format a simple scatter plot in two ways: first, the title is getting cut off so how can I better center it?
secondly, I'd like to convert the y axis units to thousands to make it easier to read.
How can I do this?
Here is my code
plot(most.urb$`2010.Census.Total.Population` ~ most.urb$`2010.Census.Percent.Rural`,
+ main="Variation Within 'Mostly Urban'", xlab="% of Population in a Rural block", ylab="County Population")
thank you!