I have a csv file that looks like this:
No String
1 A B A A B C D E E C F
1 B B B C M F G
1 A A M V
2 H C A A A B B N M F
2 N M H D D B A F F N M N
3 A C M G F F A A A
.. ....
I would like to convert this file to a graph where it contains nodes: A,B ,C,D,E,F,G,H,M,N,V and edges between them are the value in column 'No' with considering of loop.
Any hints would be appreciated.