Reputation: 2935
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
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
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
Reputation: 10454
If you would be ok with using jython there are some good visualization libraries for java including:
If you are using Python on the server and want to use Javascript or Flash there are other libraries available
Javascript:
Flash:
Upvotes: 4
Reputation: 882751
The Nodebox Graph library is specifically designed for graph visualization and analysis: well worth considering.
Upvotes: 4