Inserts nodes and edges from a data table into the network. The table can contain the nodes per edge in one row separated by the defined separator or the nodes of one edge in several rows. An example table that would use the node id and second node id column would look as follows (typical edge table):
Node1Id | Node2Id |
---|---|
node1 | node2 |
node2 | node4 |
node3 | node4 |
An example table that would use only the node id column and the edge id column would look as follows:
EdgeId | NodeId |
---|---|
edge1 | node1 |
edge1 | node2 |
edge1 | node3 |
edge2 | node1 |
edge2 | node3 |
NodeId |
---|
node1; node2 |
node3; node2 |
node3; node4 |