【发布时间】:2018-05-19 16:23:23
【问题描述】:
我正在进行一项研究,试图根据具体个人的地址将颗粒物暴露量分配给他们。我有两个带有经度和纬度坐标的数据集。一个 if 用于个人,一个 if 用于 pm 曝光块。我想根据最接近的块为每个主题分配一个 pm 曝光块。
library(sp)
library(raster)
library(tidyverse)
#subject level data
subjectID<-c("A1","A2","A3","A4")
subjects<-data.frame(tribble(
~lon,~lat,
-70.9821391, 42.3769511,
-61.8668537, 45.5267133,
-70.9344039, 41.6220337,
-70.7283830, 41.7123494
))
row.names(subjects)<-subjectID
#PM Block Locations
blockID<-c("B1","B2","B3","B4","B5")
blocks<-data.frame(tribble(
~lon,~lat,
-70.9824591, 42.3769451,
-61.8664537, 45.5267453,
-70.9344539, 41.6220457,
-70.7284530, 41.7123454,
-70.7284430, 41.7193454
))
row.names(blocks)<-blockID
#Creating distance matrix
dis_matrix<-pointDistance(blocks,subjects,lonlat = TRUE)
###The above code doesnt preserve the row names. Is there a way to to do
that?
###I'm unsure about the below code
colnames(dis_matrix)<-row.names(subjects)
row.names(dis_matrix)<-row.names(blocks)
dis_data<-data.frame(dis_matrix)
###Finding nearst neighbor and coercing to usable format
getname <-function(x) {
row.names(dis_data[which.min(x),])
}
nn<-data.frame(lapply(dis_data,getname)) %>%
gather(key=subject,value=neighbor)
此代码为我提供了有意义的输出,但我不确定其有效性和效率。任何有关如何改进和修复此代码的建议表示赞赏。我还收到错误消息:
Warning message:
attributes are not identical across measure variables;
they will be dropped
我无法确定其来源。
感谢您的观看!
【问题讨论】:
标签: r gis spatial nearest-neighbor