Here’s a quick snapshot of a some List Intelligence recipes I’m working on in the area of list and notable individual discovery….
The starting point in each case is a Twitter list in a particular topic area. The list I’m going to use in this example is @jobrodie’s scicomm list, a list of science communicators on Twitter.
The first recipe-in-progress tries to identify other lists in the area… It works as follows:
– for each person on the original list (candidate members), find the other lists they are mentioned on to give a set of candidate lists;
– count the number of candidate members (members of the original list) on each candidate list.
We can now display lists containing N or more people on the original list:
/JoBrodie/scicomm Candidate members: 61 Subscribers: 9
/ebsuckling/science Candidate members: 23 Subscribers: 14
/lisushi/science-world Candidate members: 22 Subscribers: 6
/Frazerbw/science Candidate members: 22 Subscribers: 2
/efficientva/science Candidate members: 22 Subscribers: 7
/cptyler/science Candidate members: 20 Subscribers: 15
/LouWoodley/london-sci-comm Candidate members: 20 Subscribers: 7
/ousefulAPI/solo10 Candidate members: 18 Subscribers: 1
/mocost/london Candidate members: 17 Subscribers: 25
/girlinterruptin/science-science-policy Candidate members: 16 Subscribers: 2
/TwistedBacteria/science-comm-edu Candidate members: 16 Subscribers: 35
/utne_altwire/science2 Candidate members: 16 Subscribers: 3
/physicus/scicom Candidate members: 15 Subscribers: 4
/TheUrbanOctopus/science Candidate members: 15 Subscribers: 7
Or we can order the lists with more than P subscribers by subscriber count:
/sciencebase/scientwitters 11 434
/sciencebase/sci-comms 14 142
/tlists/science-995 9 77
/teobesta/science-part-1 14 38
/TwistedBacteria/science-comm-edu 16 35
/mjrobbins/women-science-tweeps-3 9 28
/mocost/london 17 25
/emble64/science-chat 13 25
/NicolasLoubet/science-tech-world 9 23
/nemski/science 9 22
/LouWoodley/solo10-attendees 12 20
/kristinalford/sciencecomms 12 20
/OpheliaBottom/journos-and-scientists 9 20
/pfanderson/science-research 12 20
/sc_k/bloggers-writers-journali 11 19
/AndreiaASoares/sci-comm 10 19
/soloconf/solo11-attendees 10 18
/cptyler/science 20 15
Or we could order lists according to some function of both subscriber count and number of list members who are also on the original list…
The second recipe attempts to identify notable individuals in a topic area based on a set of lists in the topic area. Given a list of lists (candidate lists), such as either of the above, we can then find the members of each list, and count the number of candidate lists they appear on…
['alicebell', 17, 734, 5353, 11534]
['edyong209', 16, 735, 10504, 27207]
['skyponderer', 15, 1359, 2544, 7664]
['JoBrodie', 14, 969, 1794, 25889]
['ProfBrianCox', 14, 94, 390506, 5345]
['SciencePunk', 14, 148, 5066, 8728]
['imascientist', 14, 806, 3396, 12833]
['alokjha', 14, 880, 5123, 3774]
['sciencebase', 14, 1776, 11431, 9092]
['RogerHighfield', 14, 432, 5674, 10770]
Here, then, we have view over people who appear to be heavily represented in lists in a particular subject area, where those lists are identified by means of similarity with an initial list.
Another approach to discovering notable individuals in an area would be to take all the members of a set of candidate lists and plot their social connections, both within members of set of set of candidate lists (i.e. look to see how the members of a set of candidate lists follow each other), as well as across their whole friends lists (i.e. plot the connections between members of the candidate lists and all their friends, whether or not they appear on one or more of the candidiate lists).
PS Rather than seeding the recipe with an initially prepared list, we might also seed it with a search around a particular search term. So for example, it’s possible to generate an initial set of candidate members from a simple Twitter search. A search on a given keyword identifies a set if users who have tweeted using that keyword, which we can then use to identify a set of lists in the area and a set of users who appear across those lists. Searching on the keyword “education” turns up the following people spread across lists that mentioned people who had recently tweeted the keyword “education”:
'JobsDirectUSA', 'coolcatteacher', 'AmericaHires','educationweek', 'edutopia', 'DellEDU', 'web20classroom', 'elearnnet', 'C4LPT', 'UPSjobs'
(I suspect the original search turned up users who were represented on job related lists!)
It’s not brilliant, but it’s a start…