views:

450

answers:

1

Is there a Python library for generating Sankey diagrams?

I've seen this list of Sankey diagram software, but no Python.

+2  A: 

I did a Google search on "Python graph visualization" and found some stuff. There are several libraries that have "spring" behavior where the software balances out a graph and makes it pretty; they do much of the work for you. But they draw graph diagrams, with nodes and edges, nothing like a Sankey diagram.

A Google search on "Python sankey" produced no useful results.

I did some Google searches on "Python vector graphics" and found this very promising result:

http://pypi.python.org/pypi/Things

With Things, apparently you draw basic shapes in Inkscape (a free vector editing program) and then you write Python to scale, rotate, etc. the shapes to produce an image or an animation. It should be possible to write Python code to automatically make the Sankey arrows spring away from their sources, turning up, down, whatever.

See also the StackOverflow discussion of drawing vector diagrams in Python: http://stackoverflow.com/questions/634964/svg-diagrams-using-python

That page led me to: http://cairographics.org/ which looks very useful.

The blog you linked has a posting about an article on automatic Sankey diagram creation:

http://www.sankey-diagrams.com/sankey-diagrams-are-directed-weighted-graphs/

http://www.svgopen.org/2003/papers/RenderingGraphs/index.html

I didn't find a turnkey solution for you, but I did find some parts that could potentially be used in a solution. Good luck.

steveha