Drawing in IPython Notebook inline (web interface)

I don't know if this feature exists already, I haven't found it atleast. In
IPython notebook it would be nice to draw a graph when calling
`graph_draw(`. I found how igraph did some of this
here: https://github.com/igraph/igraph/pull/7/files.

attachment.html (268 Bytes)

This is a good idea, and it is in fact very easy to implement. In the
current git version you can do:

        graph_draw(g, inline=True)

which will draw an inline image within an Ipython notebook.

Best,
Tiago