|
| From: | Tamas Nepusz |
| Subject: | Re: [igraph] Need your help |
| Date: | Tue, 20 Apr 2010 19:56:22 +0100 |
> In R this would be something like:
>
> pos <- layout.fruchterman.reingold(mygraph)
> plot(mygraph, layout=pos)
In Python, this is equivalent to:
layout = graph.layout("fruchterman_reingold")
plot(graph, layout=layout)
See help(Graph.layout) in Python for more info.
--
Tamas
| [Prev in Thread] | Current Thread | [Next in Thread] |