Skip to content Skip to sidebar Skip to footer

Any 'pretty' Data Visualization Libraries For Python?

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

Solution 1:

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.


Solution 2:

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


Solution 3:

Check out Bokeh at pydata

source code here


Solution 4:

There's PyCha for charts.


Solution 5:

are you looking for graph software?

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


Post a Comment for "Any 'pretty' Data Visualization Libraries For Python?"