我在数据集上运行for循环以检索某个经度和纬度值附近的位置,并且只要有NA,for循环就会停止。是否有可能继续执行for循环并忽略丢失的信息。
for(i in 1:nrow(top)){
x <- (top[i,c("V3")]) ////latitude value
y <- (top[i,c("V4")]) /// longitude value
res <- GNfindNearby(lat=x, lng=y,radius=0.01) /// near by places
top[i,"Location"] <- res
}
答案 0 :(得分:0)
GNfindNearby
?spDists
和spDistsN1
函数。