I have this dataset:
article1    article2    article3
R1  R1  R20
R2  R13 R5
R3  R7  R21
R4  R8  R22
R5  R14 R8
R11 R15 R23
R12 R9  R24
R6  R10 R25
    R2  R10
    R6  R9
    R16 R26
    R17 R27
    R4  R28
    R18 R29
    R19 R3
        R30
        R31
        R1
        R32
        R7
        R33
I would like to create a graph network using igraph and have as nodes articles1,2,3 and as edges R1,2,...
How is it possible to set the nodes and edges in igraph and produce a graph.
I have calculated the frequency of every R in dataset and here is the list:
R   frequency
R1  3
R2  2
R3  2
R4  2
R5  2
R6  2
R7  2
R8  2
R9  2
R10 2
R11 1
R12 1
R13 1
R14 1
R15 1
R16 1
R17 1
R18 1
R19 1
R20 1
R21 1
R22 1
R23 1
R24 1
R25 1
R26 1
R27 1
R28 1
R29 1
R30 1
R31 1
R32 1
R33 1
 
    
