katz_centrality | R Documentation |
Katz centrality computes the relative influence of a node within a network by measuring the number of the immediate neighbors (first degree nodes) and also all other nodes in the network that connect to the node under consideration through these immediate neighbors
katz_centrality(graph, alpha = 0.1)
graph |
The input graph as igraph object |
alpha |
The alpha parameter, which must be between 0.0-0.2. The default is 0.1. |
vids |
Vertex sequence, the vertices for which the centrality values are returned. Default is all vertices. |
A numeric vector contaning the centrality scores for the selected vertices.
Mahdi Jalili m_jalili@farabi.tums.ac.ir
Junker, Bjorn H., Dirk Koschutzki, and Falk Schreiber. "Exploration of biological network centralities with CentiBiN." BMC bioinformatics 7.1 (2006): 219.
g <- barabasi.game(20) katz_centrality(g)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.