Really confused about what input I should be using, I can't work it out from the example data set.
I have a data set like this:
node1 node2 edge_score
x1 x2 0.1
x1 x3 0.2
x8 x4 0.1
x4 x5 0.4
x6 x7 0.5
(In real life, the score is an indication of how similar two nodes are).
I want to plot these in one of these circle packing graphs.
But I can't work out how to input my data (because I guess here I can two vertices, node A and node B?) compared to the flare data set that they use as an example.
So the input should be the table above and the output should be a bubble plot (one giant circle) with three smaller sub-circles:
One circle has x1, x2 and x3
one circle has x8, x4 and x5
one circle has x6 and x7
if it was possible incorporate the edge score into the size of the circles that would be great but I don't see how edges are included in this analysis, but then, they are read into the example? Or I guess even if someone could demonstrate how to change the node size generally if I added another column with some node size or something.