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:

example graph

thank help!

unfortunately, nested graphs not supported igraph.


Comments

Popular posts from this blog

php - Invalid Cofiguration - yii\base\InvalidConfigException - Yii2 -

How to show in django cms breadcrumbs full path? -

ruby on rails - npm error: tunneling socket could not be established, cause=connect ETIMEDOUT -