I have a table made with two lists A and B of individuals and their relationship R that can either take the values of 0, 1, or 2.
I want to create a graph where I have the list A on one side, the list B on the other side and items on both lists linked together with a different color depending on the value of R.
Any idea or suggestion on how to do it much appreciated!
So the data looks something like :
A, B, R
A1, B1, 0
A1, B2, 2
A1, B3, 0
A2, B1, 1
A2, B2, 0
A2, B3, 1
A3, B1, 0
A3, B2, 0
A3, B3, 2