I am doing a project on Social Network Analysis of Facebook Network. I had to get all my friends and who of my friends are friends with each other, mutual frindships inside my network. I did that, I got all id's of my friends and adjacencies and now I have to form an adjacency matric which indicates if 2 of my friends are friends. For example: A and B are friends, A and C are friends, but B and C are not friends. This would look like this:

  A  B  C

A 0  1  1

B 1  0  0

C 1  0  0

Because I have the list of id's and adjacencies already in python, I should also do the matrix in python, so if you have any ideas or a basic algorithm how to enter 1's and 0's I would appreciate it.

link|improve this question
feedback

2 Answers

I think this structure is better implemented as a graph. For example, take a look at NetworkX.

Anyway, if you really need matrices, a matrix can simply be implement as a list of lists, like this:

m = [[0, 1, 1],
     [1, 0, 0],
     [1, 0, 0],]

But if you intend to do any matrix manipulation, you should check out the numpy library.

link|improve this answer
I actually already have a graph(rGraph), but what I need is such a matrix because it is easier for me and my team to analyze triadic and other patterns of friendships in the data. – Ensar Jusufovic Dec 18 '11 at 20:04
I'm not positive, but he might've meant an adjacency matrix implementation of a graph, which could be useful here potentially. en.wikipedia.org/wiki/Adjacency_matrix#Data_structures – Doug Swain Dec 18 '11 at 20:05
@EnsarJusufovic You should check out the python NetworkX package along with the numpy package. You have a function to get the numpy adjacency matrix from your graph: networkx.lanl.gov/reference/generated/… – Chewie Dec 18 '11 at 20:09
I've read the article, and yes, this is what I need. But I am new to python and don't really know how to create this matrix, I have the necessary data, the basic idea would be: create a matrix of size no. of friends x no. of friends for each column (friend id) compare where the adjacency exists and put 1, else 0 etc Something like this..:S – Ensar Jusufovic Dec 18 '11 at 20:11
The problem is that I took a template for the graph, just entered the data and the graph was created automatically, it is not a graph created using the networkx package. – Ensar Jusufovic Dec 18 '11 at 20:15
show 4 more comments
feedback

I solved the problem, it just required 2 for loops to go thorugh the list and compare whether the users id is in the adjacency list, if that is the case, make that entry 1, otherwise 0.

link|improve this answer
Congrats on the solution! When you are able, please make sure to mark your answer as 'accepted' so that others might learn from your success. Cheers~ – Andrew Kozak Dec 22 '11 at 1:37
feedback

Your Answer

 
or
required, but never shown

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