R Create a Spatial Bubble Plot That Overlays A basemap of the US and other spatial layers as needed
问题 I'm trying to produce a nice bubble plot overlaid on top of a basemap of the US (i could import a shapefile if that is preferred but i've been using the R basemaps. library(ggplot2,sp,raster,maps,mapdata,maptools,ggmap,rgeos) myData = data.frame(name=c("Florida","Colorado","california","Harvard","Yellowstone"), lat=c(28.1,39,37,42,44.6), long=c(-81.6,-105.5,-120,-71,-110), pop=c(280,156,128,118,202)) Using this code below, that i adapted from another stack overflow post (Create bubble plot in