我有一个这样的清单
list1<- list(c(12,45,12,0,0),c(12,45,12,0,1),c(14,45,12,0,2),c(12,15,12,0,3),c(12,45,17,0,4))
我想通过在 R 中使用来遍历这个列表foreach
。这里的目标是将随机向量c(1,1,2,0,6)
与列表中的这些向量进行比较。通过“比较”,我的意思是我需要计算这些向量之间的欧几里德距离并找到最接近我的随机向量的一个。
使用该函数可以实现计算距离的最有效方法dist
。
# a random vector
rvec <- c(1,1,2,0,6)
# a list of coordinates
list1 <- list(c(12,45,12,0,0),
c(12,45,12,0,1),
c(14,45,12,0,2),
c(12,15,12,0,3),
c(12,45,17,0,4))
# calculate distances between the random vector and the list elements:
dist(rbind(rvec, t(matrix(unlist(list1), length(list1)))))[seq_along(list1)]
[1] 46.82948 46.71188 47.12749 20.63977 47.81213