katamole 0 Newbie Poster

Hi all,

Looking through the more popular visualization packages for Python, it seems like it is very difficult to specify a network with absolute length values for the edges.

Example:

Create 4 nodes: a, b, c, d

Create edges between all nodes: a>b, a>c, a>d, b>c, b>d, c>d

This is simple to visualize using popular packages.

However, I can't find a way to specify the length of these edges in any of the packages I've used. I've checked Ubigraph, Pydot (a graphviz binding), Networkx and a couple of others.

Does anybody know how I could do this in one of these packages or in a different package?

I simply want to specify a length for the edges (vertices, paths, etc.) between the nodes.