提问人:Silas Alves Costa 提问时间:11/6/2023 最后编辑:ProgmanSilas Alves Costa 更新时间:11/7/2023 访问量:21
在 R 的 igraph::transitivity(graph, type = “local”) 函数中获取顶点的名称
Get the name of the vertex in the igraph::transitivity(graph, type = "local") function in R
问:
当我在 R 中使用 igraph 包中的 degree(graph) 函数时,输出会显示顶点的名称及其各自的值,但是,当我从同一包中运行 transitivity(graph, type = “local”) 函数时,输出是一个没有名称的列表,我无法分辨每个值对应于哪个节点。
我希望传递性(graph, type = “local”)函数的输出伴随着顶点的名称。
答:
0赞
Szabolcs
11/6/2023
#1
结果的顺序始终与指定的参数相同,或者如果保留其默认值,则与 返回的顶点列表的顺序相同。vid
vid
V(g)
所有 igraph 函数都是如此,没有例外。
评论