作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
Igraph R 包具有实现的边介数中心性。我知道文献中还研究了其他边缘中心性度量。是否有包含一些其他边缘中心性度量的软件包,例如 k 路径边缘中心性度量?我们可以使用问题图的折线图来计算边中心性指数吗?
最佳答案
CINNA
包 on 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/
我是一名优秀的程序员,十分优秀!