local_bridging_centrality {CINNA} | R Documentation |
Local Bridging Centrality
Description
This function computes the Local Bridging Centrality for nodes in a network. The Local Bridging Centrality classifies nodes based on their structural links among the dense components.
Usage
local_bridging_centrality(x, vids = V(x))
Arguments
x |
An igraph or a network object. |
vids |
Nodes to be considered in the calculation. |
Value
A numeric vector including the centrality values for each node. The centrality values represent the Local Bridging Centrality measure for each node in the network.
Author(s)
Minoo Ashtiani, Mehdi Mirzaie, Mohieddin Jafari
References
Macker, J.P. (2016). An improved local bridging centrality model for distributed network analytics. In Military Communications Conference, MILCOM 2016-2016 IEEE (pp. 600-605). IEEE. DOI: 10.1109/MILCOM.2016.7795393
See Also
Examples
data(zachary)
local_bridging_centrality(zachary)
[Package CINNA version 1.2.2 Index]