4

你好 stackoverflow 社区!

有人可以帮助我,因为我在 R 中创建等值线图时遇到了一些困难。截至目前,我已将 LL 信息分配给我的兴趣点,我现在想使用“罐头”变量创建等值线图在数据集 (data.csv) 中按高中区 (highdist_n83.shp.zip)。我想请教的是如何用每个地区的罐头总数正确填写地图。我提供了代码,它从保管箱中提取了一个示例数据文件和我想使用的形状文件。

编辑 对不起,我忘了补充一点,当我只绘制形状文件时,我可以看到它通过 ggplot 呈现。但是,当我尝试使用“罐头”变量的数量“填充”区域时,R 会挂起一段时间,然后再渲染原始形状上的大量线条。我想知道错误是否是由于以下可能的原因

  1. 形状文件不好
  2. 我如何合并数据框和形状文件可能存在问题,因为我注意到合并文件中添加了其他行
  3. 一个地区有多所学校,我在使用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)
4

1 回答 1

7

当你强化你的 shapefile 时,你最终会得到错误的 ID。相反,根据 shapefile 的行名显式添加一个 ID 列并使用它来合并。您也没有告诉geom_polygon如何对您的行进行分组,data.frame因此它们都被绘制为一个连续重叠、自相交的多边形。将组参数添加到geom_polygon. 我也喜欢用来RColorBrewer为地图挑选漂亮的颜色(使用函数brewer.pal)。

试试这个:

require(RColorBrewer)
shape2@data$id <- rownames(shape2@data)
sh.df <- as.data.frame(shape2)
sh.fort <- fortify(shape2 , region = "id" )
sh.line<- join(sh.fort, sh.df , by = "id" )


mapdf <- merge( sh.line , data.2 , by.x= "NAME", by.y="NAME" , all=TRUE)
mapdf <- mapdf[ order( mapdf$order ) , ]

ggplot( mapdf , aes( long , lat ) )+
  geom_polygon( aes( fill = cans , group = id ) , colour = "black" )+
  scale_fill_gradientn( colours = brewer.pal( 9 , "Reds" ) )+
  coord_equal()

在此处输入图像描述

于 2013-06-12T10:13:09.710 回答