rspbc {NetworkToolbox} | R Documentation |
Randomized Shortest Paths Betweenness Centrality
Description
Computes betweenness centrality based on randomized shortest paths of each node in a network (Please see and cite Kivimaki et al., 2016)
Usage
rspbc(A, beta = 0.01, comm = NULL)
Arguments
A |
An adjacency matrix of network data |
beta |
Sets the beta parameter.
Defaults to |
comm |
Vector. Community vector containing a value for each node. Computes "bridge" RSPBC, where the number of times a node is used on a random path between to another community |
Value
A vector of randomized shortest paths betweenness centrality values for each node in the network
Author(s)
Alexander Christensen <alexpaulchristensen@gmail.com>
References
Kivimaki, I., Lebichot, B., Saramaki, J., & Saerens, M. (2016). Two betweenness centrality measures based on Randomized Shortest Paths. Scientific Reports, 6, 19668.
Examples
# Pearson's correlation only for CRAN checks
A <- TMFG(neoOpen, normal = FALSE)$A
rspbc <- rspbc(A, beta=0.01)