I'm trying to create a graph with graph-tool (https://graph-tool.skewed.de) from csv file that content like:
A,B,50
A,C,34
C,D,55
D,D,80
A,D,90
B,D,78
Now I want to create a graph with A, B, C, D as nodes and the third column numbers as edges. I am using graph-tool library. The third column number shows the common items shared by A,B and A,C and so on.
I can do it by "networkx" (read_edgelist and etc) but I want to do it with graph-tool.
[[A , B, 50], [A, C, 50]]in memory?