gpt4 book ai didi

r - igraph R 中的边缘中心性度量

转载 作者:行者123 更新时间:2023-12-05 07:29:29 25 4
gpt4 key购买 nike

Igraph R 包具有实现的边介数中心性。我知道文献中还研究了其他边缘中心性度量。是否有包含一些其他边缘中心性度量的软件包,例如 k 路径边缘中心性度量?我们可以使用问题图的折线图来计算边中心性指数吗?

最佳答案

CINNAon CRAN我相信,支持各种中心性度量,包括 k 路径边缘中心性。

您可以通过以下方式查看措施:

library("igraph")
library("CINNA")

g <- erdos.renyi.game(100, 0.2)
proper_centralities(g)
#[1] "subgraph centrality scores"
#[2] "Topological Coefficient"
#[3] "Average Distance"
#[4] "Barycenter Centrality"
#[5] "BottleNeck Centrality"
#[6] "Centroid value"
#[7] "Closeness Centrality (Freeman)"
# ...
#[16] "K-core Decomposition"
#[17] "Geodesic K-Path Centrality"
#[18] "Katz Centrality (Katz Status Index)"
# ...
#[41] "Stress Centrality"
#[42] "Load Centrality"
#[43] "Flow Betweenness Centrality"
#[44] "Information Centrality"
#[45] "Dangalchev Closeness Centrality"
#[46] "Group Centrality"
#[47] "Harmonic Centrality"
#[48] "Local Bridging Centrality"
#[49] "Wiener Index Centrality"

如您所见,有很多可供选择。 calculate_centralities 函数可以计算给定图的度量。

关于r - igraph R 中的边缘中心性度量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52726215/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com