AlgoMan
AlgoMan

Reputation: 2935

Cluster Graph Visualization using python

I am assembling different visualization tools that are available in python language. I found the Treemap. (http://pypi.python.org/pypi/treemap/1.05)

Can you suggest some other tools that are available. I am exploring different ways of visualization of web data.

Upvotes: 3

Views: 4880

Answers (4)

nkint
nkint

Reputation: 11743

matplotlib is a great tool for visualization. and mayaVi for 3d visualization. pygl and pyglet for a bit lower graphics, otherwise!

Upvotes: 0

JeniaGor
JeniaGor

Reputation: 21

You could try NetworkX: (http://networkx.lanl.gov/)

It's really simple to use and supports either matplotlib or Graphviz for graphics. The documentation is excellent too.

Upvotes: 2

Jay Askren
Jay Askren

Reputation: 10454

If you would be ok with using jython there are some good visualization libraries for java including:

  1. Prefuse
  2. Piccolo

If you are using Python on the server and want to use Javascript or Flash there are other libraries available

Javascript:

  1. Javascript InfovisToolkit
  2. Processing.js
  3. Protovis

Flash:

  1. Flare

Upvotes: 4

Alex Martelli
Alex Martelli

Reputation: 882751

The Nodebox Graph library is specifically designed for graph visualization and analysis: well worth considering.

Upvotes: 4

Related Questions