4 thoughts on “Updated pretty maps of 2008 by rich and poor

  1. I like the way you paired the maps and plots. It looks like you produced them with R. Is this how you added dollar and percent signs to the tick labels?
    with(data, plot(y~x, yaxt="n", xaxt="n"))
    l.x

  2. I'm trying again because the script on the right side of the assignment arrows was cut off in my previous comment. Thanks for any insights you can provide on tick labeling with dollar and percent signs.<pre>with(data, plot(y~x, yaxt="n", xaxt="n"))l.x = paste("$", axTicks(1), sep="")l.y = paste(axTicks(2), "%", sep="")axis(1, at=axTicks(1), labels=l.x)axis(2, at=axTicks(2), labels=l.y)</pre>

Comments are closed.