FINALLY! Yes, in today's SNA Wednesday, we will go over Freeman's 1977 classic paper on network centrality measures:
A Set of Measures of Centrality Based on Betweenness http://moreno.ss.uci.edu/23.pdf
Freeman sets the scene with a bit of history and motivation as to why centrality is an important property of (social) networks:
The earliest intuitive conception of point centrality in communication was based upon the structural property of betweenness. According to this view, a point in a communication network is central to the extent that it falls on the shortest path between pairs of other points.
... the importance of this conception of point centrality is in the potential of a point forcontrol of information flow in the network. Positions are viewed as structurally central to the degree that they stand between others and can therefore facilitate, impede or bias the transmission of messages.
In the 1st installment discussing network centrality measures, we conceptualized centrality measures in two ways:
The 2 measures introduced in that 1st post and the 2 in the interlude were decidedly egotistic:
Instead, in his paper, Freeman is thinking holistically, as is shown by the focus on betweenness. While the difference is subtle, betweenness calculates an Ego's centrality measure based more on its position in the network, the paths it participates in, and thus its ability to control flow between nodes. This is what he means when he speaks about structure and position in the quote above.
Freeman comes up with a measure that begins to take into account
Ego's centrality by its participation in paths
between pairs of nodes in the network.
So, lets describe it:
Freeman
Me
Betweenness requires Ego to lie on a geodesic (shortest path) between a node-pair, say (j, k). If there is only 1 geodesic between (j, k) and Ego does not lie on it, then Ego's betweenness is increased by 0. If it does, it is increased by 1. When Ego lies on a geodesic lets note the number of these as:
gjk(ego)
It is not unlikely for there to be multiple geodesics between node-pairs in a (social) network. Lets note the number of these as:
gjk
Ego's betweenness for this node-pair is thus the proportion or probability that it lies on any of its geodesics, ie. we must normalize the number of geodesics Ego lies on. Lets note this as:
gjk(ego) / gjk
We must then follow this process and sum for all node-pairs in the (social) network. Lets note this as:
∑ gjk(ego) / gjk
thus:
Betweenness Centrality
CBi(g) : ∑ gjk(i) / gjk
Lets return to our 4 node network we have been analyzing so far and calculate Ego's betweenness centrality:
Betweenness centrality for each is:
Well, that was anticlimactic! The "problem" is that this is a pretty basic network, without multiple paths between nodes.
Lets try it with this "classic" network:
Hmm, still not terribly exciting.
Think about betweenness .. what is it about? The fact that nodes of type C have 0 betweenness should help.
It is a measure of how a nodes participates in paths in the network.
Lets modify the "classic" network just a bit:
Ah!! Ok .. it should be getting clearer. We added 2 nodes -- D -- in the same position within the network, and we removed an edge between the two C type nodes on the right (thus no longer a clique) changing the structure and hence impacting the betweenness of the B type node on the right, now indicated with B'.
What was the outcome? What is there to learn?
So, lets sum up all centrality measures so far for this network: