views:

192

answers:

3

There are plenty of 'pretty-printing' visualization libraries for Javascript. E.g. those listed here.

Googling for 'python visualization libraries' only turns up stuff like VTK and mayavi, which are primarily more for no-nonsense scientific use.

So, do you know of any Python libraries similar to those Javascript ones in the above link? I particularly like the Javascript Infovis Toolkit.

+1  A: 

There's PyCha for charts.

ezod
+4  A: 

For Python there really isn't "one viz library to rule them all". There are different libraries and toolkits for different purposes. For graphs in Python you may find igraph useful. For other types of scientific or data isualizations matplotlib is also good.

rlotun
+1  A: 

are you looking for graph software?

Checkout http://www.graphviz.org/Gallery.php. it has python bindings.

aaa