Write G in GEXF format to path.
“GEXF (Graph Exchange XML Format) is a language for describing complex networks structures, their associated data and dynamics” [R231].
Parameters : | G : graph
path : file or string
encoding : string (optional)
prettyprint : bool (optional)
|
---|
Notes
This implementation does not support mixed graphs (directed and unidirected edges together).
The node id attribute is set to be the string of the node label. If you want to specify an id use set it as node data, e.g. node[‘a’][‘id’]=1 to set the id of node ‘a’ to 1.
References
[R231] | (1, 2) GEXF graph format, http://gexf.net/format/ |
Examples
>>> G=nx.path_graph(4)
>>> nx.write_gexf(G, "test.gexf")