你好 stackoverflow 社区!
有人可以帮助我,因为我在 R 中创建等值线图时遇到了一些困难。截至目前,我已将 LL 信息分配给我的兴趣点,我现在想使用“罐头”变量创建等值线图在数据集 (data.csv) 中按高中区 (highdist_n83.shp.zip)。我想请教的是如何用每个地区的罐头总数正确填写地图。我提供了代码,它从保管箱中提取了一个示例数据文件和我想使用的形状文件。
编辑 对不起,我忘了补充一点,当我只绘制形状文件时,我可以看到它通过 ggplot 呈现。但是,当我尝试使用“罐头”变量的数量“填充”区域时,R 会挂起一段时间,然后再渲染原始形状上的大量线条。我想知道错误是否是由于以下可能的原因
- 形状文件不好
- 我如何合并数据框和形状文件可能存在问题,因为我注意到合并文件中添加了其他行
- 一个地区有多所学校,我在使用ddply时没有合并。
感谢您的时间!
###load R scripts from dropbox
dropbox.eval <- function(x, noeval=F) {
require(RCurl)
intext <- getURL(paste0("https://dl.dropboxusercontent.com/",x), ssl.verifypeer = FALSE)
intext <- gsub("\r","", intext)
if (!noeval) eval(parse(text = intext), envir= .GlobalEnv)
return(intext)
}
##pull scripts from dropbox
dropbox.eval("s/wgb3vtd9qfc9br9/pkg.load.r")
dropbox.eval("s/tf4ni48hf6oh2ou/dropbox.r")
##load packages
pkg.load(c(ggplot2,plyr,gdata,sp,maptools,rgdal,reshape2))
###setup data frames
dl_from_dropbox("data.csv","dx3qrcexmi9kagx")
data<-read.csv(file='data.csv',header=TRUE)
###prepare GIS shape and data for plotting
dropbox.eval("s/y2jsx3dditjucxu/dlshape.r")
temp <- tempfile()
dlshape(shploc="http://files.hawaii.gov/dbedt/op/gis/data/highdist_n83.shp.zip", temp)
shape<- readOGR(".","highdist_n83") #HDOE high school districts
shape@proj4string
shape2<- spTransform(shape, CRS("+proj=longlat +datum=NAD83"))
data.2<-ddply(data, .(year, schoolcode, longitude, latitude,NAME,HDist,SDist), summarise,
total = sum(total),
cans= sum(cans))
coordinates(data.2) <-~longitude + latitude
shape2.df<-fortify(shape2)
mshape2.df<- merge(shape2.df,shape2@data, by.x="id", by.y="ID",all=TRUE)
newdata <- merge(mshape2.df,data.2, by.x="NAME", by.y="NAME", all=TRUE)
newdata <- newdata [order(newdata $order),]
###choropleth map:
mapPlot <- ggplot(newdata,aes(x=long, y=lat,drop=FALSE)) +
geom_polygon(aes(fill=cans, drop=FALSE), colour = "black", lwd = 1/9,na.rm=FALSE)
+ ggtitle("Total of Cans Across State")
print(mapPlot)