install map package
map('state')
map('county','vermont')
fill=TRUE
col=set your colors
create palette (install Rcolorbrewer)
mypalette<-brewer.pal(7,"Greens")
how to see the colors:
image(1:7,1,as.matrix(1:7),col=mypalette,xlab="Greens (sequential)", ylab="",xaxt="n",yaxt="n",bty="n")
map('state',c('vermont'),col=mypalette)
http://vermont.hometownlocator.com/census/index.cfm
set colors appropriate
map('county','vermont',names=TRUE,plot=FALSE)
mypalette
Your job is to make a map of something that shows something interesting. This map should show data that is interesting to you. It is due at the end of class tomorrow (your time during the final). Make these nice--I want to use them as examples to future classes. Make sure to include all USED r code.