python - How to use nested subgraphs from graphml in igraph -
the graphml specification provides possibility create graphs child of node element, .e.g.
<graphml> <graph id="g" edgedefault="undirected"> <node id="n0"/> <node id="n1"> <graph id="n1::" edgedefault="directed"> <node id="n1::n0"/> <node id="n1::n1"/> <edge id="e0" source="n1::n0" target="n1::n1"/> </graph> </node> <edge id="e1" source="n0" target="n1"/> <edge id="e2" source="n1" target="n1::n0"/> </graph> </graphml>
is possible use igraph interpret information these subgraph? (i using python igraph version 0.7.1) edges after subgraph declaration ignored, leads following graph:
thank help!
unfortunately, nested graphs not supported igraph.
Comments
Post a Comment