mnc {centiserve} | R Documentation |
Find the maximum neighborhood component (MNC)
Description
Maximum Neighborhood Component defined as:
where where MC(v) is a maximum connected component of the and
is the induced subgraph of G by
and
is neighborhoods of node
.
Usage
mnc(graph, vids = V(graph), mode = c("all", "out", "in"))
Arguments
graph |
The input graph as igraph object |
vids |
Vertex sequence, the vertices for which the centrality values are returned. Default is all vertices. |
mode |
Character constatnt, it specifies how to use the direction of the edges if a directed graph is analyzed. For 'out' only the outgoing edges are followed. For 'in' all vertices from which the source vertex is reachable in at most order steps are counted. 'all' ignores the direction of the edges. This argument is ignored for undirected graphs. |
Details
The neighborhood of a node , nodes adjacent to
, induce a subnetwork
. The score of node
,
, is defined to be the size of the maximum connected component of
. The neighborhood
is the set of nodes adjacent to
and does not contain node
.
More detail at MNC-Maximum Neighborhood Component
Value
A numeric vector contaning the centrality scores for the selected vertices.
Author(s)
Mahdi Jalili m_jalili@farabi.tums.ac.ir
References
Lin, Chung-Yen, et al. "Hubba: hub objects analyzer-a framework of interactome hubs identification for network biology." Nucleic acids research 36.suppl 2 (2008): W438-W443.
Examples
g <- random.graph.game(20, 3/10)
mnc(g)