Content deleted Content added
m Disambiguated: Closeness → Closeness (mathematics) |
m Moving Category:Algorithms in graph theory to Category:Graph algorithms per Wikipedia:Categories for discussion/Log/2024 October 4 |
||
(24 intermediate revisions by 24 users not shown) | |||
Line 1:
{{short description|Community detection algorithm}}
The '''Girvan–Newman algorithm''' (named after [[Michelle Girvan]] and [[Mark Newman]]) is a hierarchical method used to detect [[Community structure|communities]] in [[complex system]]s.<ref name=newman>Girvan M. and Newman M. E. J., [https://dx.doi.org/10.1073/pnas.122653799 Community structure in social and biological networks], Proc. Natl. Acad. Sci. USA '''99''', 7821–7826 (2002)</ref>
== Edge betweenness and community structure ==
The Girvan–Newman algorithm detects communities by progressively removing edges from the original network. The connected components of the remaining network are the communities. Instead of trying to construct a measure that tells us which edges are the most central to communities, the Girvan–Newman algorithm focuses on edges that are most likely "between" communities.
[[Betweenness centrality|Vertex betweenness]] is an indicator of highly [[centrality|central]] nodes in networks. For any node <math>i</math>, vertex betweenness is defined as the fraction of shortest paths between pairs of nodes that run through it. It is relevant to models where the network modulates transfer of goods between known start and end points, under the assumption that such transfer seeks the shortest available route.
The Girvan–Newman algorithm
The algorithm's steps for community detection are summarized below
# The betweenness of all existing edges in the network is calculated first.
# The edge(s) with the highest betweenness
# The betweenness of all edges affected by the removal is recalculated.
# Steps 2 and 3 are repeated until no edges remain.
Line 21:
== See also ==
* [[Closeness (mathematics)|Closeness]]▼
▲* [[Closeness (mathematics)]]
* [[Hierarchical clustering]]
* [[Modularity (networks)|Modularity]]
== References ==
Line 30 ⟶ 29:
<references/>
{{DEFAULTSORT:Girvan-Newman algorithm}}
[[Category:Graph algorithms]]
[[Category:Networks]]
[[Category:Network analysis]]
|