views:

206

answers:

3

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.

+3  A: 

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

Alex Martelli
+1  A: 

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
Jay Askren
A: 

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.

JeniaGor