Many thanks for your answer. I have read the link and your words, which I suppose that refer to the adjacency matrix. I will try to do it with the Edge List and Node List as I find it easier.
I still don't know how to properly create my node list for my case. Following your link I could create a column named Name with all the data in that column. Something like this:
3818
27
65
84
34
11
70
8
42
85
3160
39
64
71
75
18
77
1082
92
71
90
2
72
46
87
75
39
79
48
92
84
0
1123
23
47
52
86
58
18
36
26
88
48
0
74
6626
26
83
35
90
69
88
82
88
69
39
56
49
9
2645
17
27
28
42
26
85
42
60
66
49
55
77
8912
86
9
6
49
43
9428
0
72
63
65
96
79
54
99
32
96
54
86
52
71
94
77
7324
76
90
12
58
90
93
I imagine that this would create all the nodes in the graph, but not in a grouped way. Remember that my goal was to group all the original data by columns: for instance one group should be formed by these elements, with the first one as the title or the name of the group:
3818
27
65
84
34
11
70
8
42
85
Then a link should go from that box to any other box that contains repeated elements, with a label on that link indicating the number of repeated elements.
I have created the edge list, the column Count indicates the number of repeated elements between the previous two columns.
Source Target Count
3818 1082 1
3818 2645 4
3818 9428 1
3160 1082 3
3160 1123 1
3160 6626 1
3160 2645 1
3160 9428 2
1082 1123 2
1082 6626 2
1082 9428 4
1082 7324 2
1123 6626 3
1123 2645 1
1123 8912 1
1123 9428 3
1123 7324 1
6626 2645 2
6626 8912 2
6626 7324 2
2645 8912 1
2645 9428 1
8912 9428 1
I still need help on how to create, if possible, all the nodes and group them. A possibility would be to group them manually, but if it's possible I would need it to be automatic. Also regarding the nodes I would like the values to be shown inside the box, and when I import them like this the values are not shown in the box (they are in the properties).
Finally please check my edges configuration and tell me if that could work. Notice that in the edges only the title or the name of each box is shown, not the other numbers contained in each group.
Any suggestion would be appreciated. Thanks in advance.