list2Matrix {Rintact} | R Documentation |
The list2Matrix
takes in a named list (representing a bipartite graph) and
transforms into into a (0,1)-matrix representation. The names of the list index the
columns and the union of the elements of the list index the row. The (i,j) position
of the matrix is 1 if element i is in the list element indexed by name j, and it
is 0 otherwise.
list2Matrix(namedList)
namedList |
A named list. The list represents a bipartite graph. |
A (0,1)-matrix representation of the bipartite graph.
T Chiang
eg = list(first = letters[1:5], second = letters[4:8]) list2Matrix(eg)