According to a 2012 study by Pew Research Center’s Internet and American Life Project1:
On Facebook, the average person has 245 friends. However, the average friend of a person has 359 Facebook friends. The finding, that people’s friends have more friends than they do, was nearly universal. Only those who had among the 10% largest friends lists (over 780 friends) had friends who on average had smaller networks than their own.
It’s just the digital reflection of what’s known as the friendship paradox2, the phenomenon first observed by the sociologist Scott L. Feld in 1991 that most people have fewer friends than their friends have, on average.
The generalized friendship paradox states that the friendship paradox applies to other characteristics as well. For example, one’s co-authors are on average likely to be more prominent, with more publications, more citations and more collaborators, or one’s followers on Twitter have more followers.
Let’s check this for our facebook friends.
Navigate to friends list on your facebook profile. Scroll down enough so all your friends are on the page, Select All (Ctrl-A
) and Copy (Ctrl-C
). Then, paste (Ctrl-V
) the content copied into any regex
editor3.
Note: The data can also be grabbed by web scrapping using Python’s beautifulsoup
and requests
library.
Now, we need to find all instances of count of friends from the content pasted. It can be done by regex expression [,\d]+ friends
. Grab all instances of text like 345 friends
and save it as txt
file, say, facebook_friends.txt
.
Note: We won’t get count of all of our friends via this method because friends page on facebook lists some friends with mutual friends count if they have privacy set to Only me.
Now, open python console and do some analysis on the data.
Now, let’s plot the data.
It appears the paradox holds true for me as well!
I have 208 facebook friends, but on average, my friends have 594 facebook friends.
Footnotes:
1: 2012 Pew Research Center’s study ↩
2: Friendship paradox ↩
3: Regex editor ↩
4: Image source