mikedewar / d3py

a plottling library for python, based on D3
1.42k stars 202 forks source link

Cannot read property 'weight' of undefined #84

Open 101hanbin opened 6 years ago

101hanbin commented 6 years ago

image image `import d3py import networkx as nx

import logging logging.basicConfig(level=logging.DEBUG)

G=nx.Graph() G.add_edge(1,2) G.add_edge(1,3) G.add_edge(3,2) G.add_edge(3,4) G.add_edge(4,2)

use 'with' if you are writing a script and want to serve this up forever

with d3py.NetworkXFigure(G, width=500, height=500) as p: p += d3py.ForceLayout() p.show() `