vote up 1 vote down star
2

I have a list of users:

users = [1,2,3,4,5]

I want to compute a relationship between them:

score = compatibility( user[0], user[1] )

How do I loop over users so that a relationship between users are computed only once?

flag

80% accept rate

6 Answers

vote up 11 vote down check

If you care only about ordered relationship, you could do the following:

>>> for i, u in enumerate(users[1:]):
    print(users[i], u)           # or do something else


1 2
2 3
3 4
4 5

if you need all combinations you should use itertools.combinations:

>>> import itertools
>>> for i in itertools.combinations(users, 2):
    print(*i)

1 2
1 3
1 4
1 5
2 3
2 4
2 5
3 4
3 5
4 5
link|flag
+1 for showing me another Python function I didn't know existed :). – Andre Miller Sep 14 at 10:36
itertools is full of gems ;) – SilentGhost Sep 14 at 10:38
>for i in itertools.combinations(users, 2): Very elegant! Thank you for this solution! – Hobhouse Sep 14 at 10:39
itertools.combinations yields all combinations, not permutations. itertools.permutations would yield (1,2) and (2,1). – Alasdair Sep 14 at 15:20
@Alasdair: and it's exactly what the OP doesn't need. – SilentGhost Sep 14 at 16:13
show 2 more comments
vote up 0 vote down

use for loops, or list comprehension.

here is for loop example:

for u in users:
    for su in users:
        if su == u:
            pass
        else:
            score = compatibility(u, su)
            # do score whatever you want

list comprehension:

score = [compatibility(x, y) for x in users for y in users if x!=y and compatibility(x,y) not in score]
link|flag
compatibility looks like a commutative operation. In that case, you're computing compatibility of each user pair twice, once as compatibility(A,B) and again as compatibility(B,A). – bendin Sep 14 at 10:31
@bendin, yup correct but adding compatibility(x,y) not in score will make sure that there will be only one relationship in the pair. – Mohamed Sep 14 at 10:45
vote up 0 vote down

Something like the following should work (not tested):

users_range = range(len(users))

# Initialize a 2-dimensional array
scores = [None for j in users_range for i in users_range]

# Assign a compatibility to each pair of users.
for i in users_range:
    for j in users_range:
        scores[i][j] = compatibility(users[i], users[j])
link|flag
vote up 0 vote down

I managed to do what I wanted with this:

i = 0
for user1 in users:   
    i += 1     
    for user2 in users[i:]:
        print compatibility( user1, user2 )
link|flag
vote up 0 vote down

If you mean that:

compatibility(user[0], user[1]) == compatibility(user[1], user[0])

you could use:

for i, user1 in enumerate(users):
    for user2 in users[i:]:
        score = compatibility(user1, user2)

this will also calculate the compatibility between the same users (maybe applicable)

link|flag
vote up 0 vote down
import itertools

def compatibility(u1, u2):
    "just a stub for demonstration purposes"
    return abs(u1 - u2)

def compatibility_map(users):
    return dict(((u1, u2), compatibility(u1, u2))
         for u1, u2 in itertools.combinations(users, 2))

> compat.compatiblity_map([1,2,3,4,5])
{(1, 2): 1, (1, 3): 2, (4, 5): 1, (1, 4): 3, (1, 5): 4,
 (2, 3): 1, (2, 5): 3, (3, 4): 1, (2, 4): 2, (3, 5): 2}

Use itertools.permuations instead of itertools.combinations if compatibility(a,b) doesn't mean the same thing as compatibility(b,a).

link|flag

Your Answer

Get an OpenID
or

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