NetworkPlot now works, but does not allow node colors or sizes to be passed as keyword arguments.

This commit is contained in:
2006-08-03 14:30:06 +00:00
parent 44b676f726
commit 4c716e9428
2 changed files with 34 additions and 20 deletions

View File

@@ -108,7 +108,6 @@ class TestDataFunction(workflow.Function):
for x in 'ABCDEF':
for y in 'ADE':
graph.add_edge(x, y, 3)
print networkx.adj_matrix(graph)
ds = dataset.GraphDataset(array(networkx.adj_matrix(graph)))
ds_plot = plots.NetworkPlot(ds)