I have records of members in a club and their interests, as in the following:

Member A: Football, Swimming
Member B: Swimming, Jooga, Jogging
Member C: Cycling, Football
Member D: Football, Tennis, Cycling

Is it possible to plot these in Python so that one can see the different interests members share? Thanks in advance, Adia

link|improve this question

feedback

2 Answers

up vote 6 down vote accepted

A simple table seems to make more sense than a Venn diagram:

import scipy, pylab
names = ['Alice', 'Bob', 'Carol', 'David']
interests = [['Football', 'Swimming'], ['Swimming', 'Jooga', 'Jogging'], 
             ['Cycling', 'Football'], ['Football', 'Tennis', 'Cycling']]
allinterests = list(set(reduce(lambda x,y:x+y, interests)))
X = scipy.zeros((len(interests), len(allinterests)))
for i, indinterests in enumerate(interests):
    for x in indinterests:
        X[i, allinterests.index(x)] = 1
pylab.matshow(X, interpolation='nearest', cmap=pylab.cm.gray_r)
pylab.show()
pylab.yticks(range(len(names)), names)
pylab.ylim([len(names)-0.5, -0.5])
pylab.xticks(range(len(allinterests)), allinterests)
pylab.savefig('interests.png')

alt text

link|improve this answer
I am trying the exact same code you have posted on my machine, but it gives a 'syntax error' message along the colons in the first and second FOR loop. I don't see any wrong syntax here, so what could be the reason? – Adia Jan 10 '11 at 12:10
Sorry. I left out a parenthesis in the zeros line. Edited. – Steve Tjoa Jan 10 '11 at 15:16
thanks a lot Steve, that was it. – Adia Jan 10 '11 at 15:24
feedback

You might want to take a look at matplotlib and see if it offers something suitable for that.

Sage, another alternative. See also this example.

link|improve this answer
Actually I did before posting my question. I couldn't find something that could fit for mapping the members against their interests. I am sure there is, it's just my limited knowledge about Python. – Adia Jan 7 '11 at 13:32
Okay. I added another alternative to the answer. I guess something like a Venn diagram might fit your needs. – bebraw Jan 7 '11 at 13:50
1  
+1 for Venn diagram. – Chinmay Kanchi Jan 7 '11 at 13:52
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.