25

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.

int3
  • 12,861
  • 8
  • 51
  • 80

7 Answers7

16

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 visualizations matplotlib is also good.

int3
  • 12,861
  • 8
  • 51
  • 80
rlotun
  • 7,897
  • 4
  • 28
  • 23
5

Here's a new port of R's ggplot2 over to python. Looks very slick!

https://github.com/yhat/ggplot/

More info here: http://blog.yhathq.com/posts/ggplot-for-python.html


Also have a look at Seaborn, described as "Improved matplotlib for statistical data visualization": https://github.com/mwaskom/seaborn

The Seaborn examples are pretty slick:

Plotting Complex Linear Models

Visualization Distributions

Time Series Visualizations

Clay
  • 2,949
  • 3
  • 38
  • 54
5

Check out Bokeh at pydata

source code here

tuned
  • 1,085
  • 10
  • 14
2

There's PyCha for charts.

ezod
  • 7,261
  • 2
  • 24
  • 34
2

are you looking for graph software?

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

Anycorn
  • 50,217
  • 42
  • 167
  • 261
1

I second matplotlib. Also Chaco. It's not Python, but for really quick heatmaps, go to OpenHeatMap.com

chrisfs
  • 6,182
  • 6
  • 29
  • 35
0

Networkx looks to be the best-documented of the graph libraries I've seen. I think it interfaces with Matplotlib for visualization.

beardc
  • 20,283
  • 17
  • 76
  • 94
  • Networkx is absolutely awesome. You can produce some nice looking stuff with it via Matplotlib or you can use [Pygraphviz](http://pygraphviz.github.io/) to have it talk to Graphviz. – Clay Apr 23 '14 at 19:07