DH3501: Advanced Social Networks

Class 7: Triadic Closure and the Strength of Ties

Western University
Department of Modern Languages and Literatures
Digital Humanities – DH 3501

Instructor: David Brown
E-mail: dbrow52@uwo.ca
Office: AHB 1R14

So...how did it go? Let's start by talking about the famous study performed by Mark Granovetter.

  • What was Granovetter interested in?

  • How did he gather his data?

  • What were his results?

  • Why is this signifigant for network studies?

Triadic closure

Triadic closure represents our first approach to studying the dynamics of networks. While measures like centrality consider a network as a snapshot, frozen in time, triadic closure focuses on the mechanisms of new edge formation over time.

An aphoristic description of triadic closure:

  • If two people in a social network have a friend in common, then there is an increased likelihood that they will become friends themselves at some point in the future - Anatole Rapoport, 1953

Edge formation over time

Clustering coefficient

The probability that two randomly selected neighbors of a node will have an edge in common.

  • $C=\frac{\#\ of\ complete\ triangles}{\#\ of\ possible\ triangles}$

or

  • $Cl_i(g) = \frac{\#\{jk \in g | k \ne j, j \in N_i(g) k \in N_i(g) \}}{d_i(g)(d_i(g) - 1)/2}$
  • $Cl^{Avg}(g)=\sum \limits_{i}Cl_i(g)/n$

Can someone read the set builder notation?

What are some of the reasons behind triadic closure and clustering?

Bridges and the strength of weak ties

What's in a bridge?

Bridges in real world networks

Based on what we've read about bridges, giant components, and networks in general, do you think that bridges are rare or common? Why?

Were might you be likely to find a bridge in a real world network?

Local Bridges

A local bridge is an edge connecting A and B where A and B have no friends in common. Can you write that in set builder notation?

  • This structure is much more prevalent in real world networks than a true bridge.

  • But, for all intents and purposes, local bridges play a similar role in the network as a true bridge.

HEY WAIT A MINUTE!!! How does a local bridge relate to the concept of triadic closure?

Strong Triadic Closure Property

Relationships can have a strength.

  • For our purposes here, we will simply define a relationship as either strong, representing a close relationship, and weak, representing a more distant relationship (something like friends vs. acquaintances).

  • How do you think that strength of ties interacts with triadic closure?

Strong Triadic Closure Property as defined by Granovetter:

  • We say that a node A violates the Strong Triadic Closure Property if it has strong ties to two other nodes B and C, and there is no edge at all (either a strong or weak tie) between B and C. We say that a node A satisfies the Strong Triadic Closure Property if it does not violate it.

What do you think about this model? Do you think it holds true in an empirical setting?

Does the above image satisfy the Strong Triadic Closure Property?

Thought experiment: Evaluate the following claim

Is the following claim true? Prove it!

If a node A in a network satisfies the Strong Triadic Closure Property and is involved in at least two strong ties, then any local bridge it is involved in must be a weak tie.

Wait a minute...is this reality, or just a model? Can it be useful anyway?

Neighborhood overlap

Onnela et al.

  • Who-talks-to-whom cell phone data.

  • Uses total time spent talking as proxy for edge strength.

  • Instead of a strong weak dichotomy, edges display a gradient of strength.

  • Certain edges are "alomst" local bridges.

  • Neighborhood overlap:

$\frac{\# N_A(g) \cap N_B(g)}{\# N_A(g) \cup N_B(g)}$

Who can read it?

Are the results from Onnela consistent with the priciples that we've seen today?

Analysis: Tie Strength on Facebook

  • Thinking about the study described in E & K, how did the researchers determine tie strength?

  • Do you think that these represent a well chosen "proxy" for edge strength?

  • Based on your experience with Facebook, how well do you think the results presented in this study translate to the real world?

Structure and social capital

An embedded edge has certain, interesting properties:

  • Embeddedness of an edge $=\# N_A(g) \cap N_B(g)$

  • Involved nodes are "on display", and at high risk of social sanctions.

  • Interactions across non-embedded edge are considered to be more consequence free..

Structural holes are spanned by local bridges...

  • Can you think of an example of a structural hole?

  • What kinds of advantages are incurred by nodes on that form local bridges?

Social capital:

  • "Consensus is growing in the literature that social capital stands for the ability of actors to secure benefits by virtue of membership in social networks or other social structures" Porte in E & K, 68

Coding challenge: Local bridges

Implement an algorithm that iterates over all of a graphs edges, determines which of them are local bridges, and returns these bridges as a list of tuples.

Hints

  • Try to implement something similar to what we created in set builder notation.

  • Start by programming on paper. Come up with an algorithm, all of the steps you will need to complete the task, and write it out before you implement it in Python.

  • Some useful callables:

networkx.neighbors
set.union
set.intersection

...are there other ways to access neighbors using the NetworkX internal data structures...? You may prefer to use these...


In [1]:
# Challenge code goes here...