Convert to adjacency matrix
adjmat = vec2adjmat(source, target, weight=weight)
Initialize with default parameters
d3 = d3graph()
Proces adjmat
d3.graph(adjmat)
Set node properties using the set_node_properties functionality
d3.set_node_properties(color=adjmat.columns.values)
Plot
d3.show()
Simply make changes in the node properties and plot again with d3.show()
print(d3.node_properties)
Simply make changes in the edge properties and plot again d3.show()
print(d3.edge_properties)