networkx 2.8.2 Pypi GitHub Homepage
Other Docs
NotesParametersBackRef
generate_graphml(G, encoding='utf-8', prettyprint=True, named_key_ids=False, edge_id_from_attribute=None)

Notes

This implementation does not support mixed graphs (directed and unidirected edges together) hyperedges, nested graphs, or ports.

Parameters

G : graph

A networkx graph

encoding : string (optional)

Encoding for text data.

prettyprint : bool (optional)

If True use line breaks and indenting in output XML.

named_key_ids : bool (optional)

If True use attr.name as value for key elements' id attribute.

edge_id_from_attribute : dict key (optional)

If provided, the graphml edge id is set by looking up the corresponding edge data attribute keyed by this parameter. If :None:None:`None` or the key does not exist in edge data, the edge id is set by the edge key if G is a MultiGraph, else the edge id is left unset.

Generate GraphML lines for G

Examples

>>> G = nx.path_graph(4)
... linefeed = chr(10) # linefeed =
>>> s = linefeed.join(nx.generate_graphml(G))
... for line in nx.generate_graphml(G): # doctest: +SKIP
...  print(line)
See :

Back References

The following pages refer to to this document either explicitly or contain code examples using this.

networkx.readwrite.graphml.parse_graphml networkx.readwrite.graphml.generate_graphml

Local connectivity graph

Hover to see nodes names; edges to Self not shown, Caped at 50 nodes.

Using a canvas is more power efficient and can get hundred of nodes ; but does not allow hyperlinks; , arrows or text (beyond on hover)

SVG is more flexible but power hungry; and does not scale well to 50 + nodes.

All aboves nodes referred to, (or are referred from) current nodes; Edges from Self to other have been omitted (or all nodes would be connected to the central node "self" which is not useful). Nodes are colored by the library they belong to, and scaled with the number of references pointing them


GitHub : /networkx/readwrite/graphml.py#189
type: <class 'function'>
Commit: