如何只为某些顶点找到邻域?

时间:2019-05-31 10:01:00

标签: r igraph

问题已开始here

我有一个g个顶点的无向图n<100。该图很简单。所有顶点的坐标均为整数(x_i, y_i), i=1, 2,..., n,边集已预定义,它们是长度为1单位的线段。 顶点的度可以是234

library(igraph)

g <- graph_from_literal(1-2-3-4-5-6-7-8-1, 8-9-4)
B <- t(matrix(c(0,0, 0,1, 0,2, -1,2, -2,2, -2,1, -2,0, -1,0, -1,1), nrow =2));

V(g)$id <- seq_len(vcount(g))

V(g)$x <- B[,1]; V(g)$y <- B[,2]

plot(g, layout=as.matrix(B))

enter image description here

我需要为corner属性设置新的顶点属性。

我们说顶点icorner顶点,如果其度为2并且两个入射边不在同一条线上。在顶点上方的图中,1, 3, 5, 7是拐角顶点,而其余顶点2, 4, 6, 8, 9是非拐角。

我的尝试

我找到了度数等于2的顶点列表。

idv <- V(g)[strength(g)==2]; idv # 1 2 3 5 6 7 9

然后找到第i个顶点的邻域顶点列表。

neigh<-neighborhood(g, idv); neigh

错误在这里,因为我看到所有顶点的邻域顶点,而不仅是度数等于2的顶点。例如,

neigh[[4]]; neigh[[8]];   
#[1] 4 3 5 9
#[1] 8 1 7 9

问题。如何使用neighborhood函数查找仅度为2的顶点的邻域?

1 个答案:

答案 0 :(得分:1)

该函数是正确的,但是第二个参数与感兴趣的顶点无关,它是第三个参数:

neighborhood
# function (graph, order = 1, nodes = V(graph), mode = c("all", 
#     "out", "in"), mindist = 0) 
# {
# ...

因此

length(neighborhood(g, nodes = idv))
# [1] 7

完成工作。