我需要找到网络中最近的节点邻居。我使用CRAN指南中的以下编码。
# count of nodes
n <- 10
# indexes(integer) of nodes for which neighbors should be searched
node.idxs <- c(1L, 5L)
# the adjaceny matrix (does not need to be symmetric)
graph <- rbind(cbind(0, diag(n-1)), 0)
# compute the neighbors until depth 3
neighs <- nearest.neighbors(node.idxs, graph, 3)
它找到node.idxs中列出的节点索引的邻居。任何人都可以解释为什么(1L,5L)的L指数。如果我删除&#39; L&#39;它确实无效。我需要找到我所拥有的网络所有节点的最近邻居。我需要更改此行以传递动态索引列表。我该怎么办?