networkx 2.8.2 Pypi GitHub Homepage
Other Docs
NotesParametersReturnsBackRef
multipartite_layout(G, subset_key='subset', align='vertical', scale=1, center=None)

Notes

This algorithm currently only works in two dimensions and does not try to minimize edge crossings.

Network does not need to be a complete multipartite graph. As long as nodes have subset_key data, they will be placed in the corresponding layers.

Parameters

G : NetworkX graph or list of nodes

A position will be assigned to every node in G.

subset_key : string (default='subset')

Key of node data to be used as layer subset.

align : string (default='vertical')

The alignment of nodes. Vertical or horizontal.

scale : number (default: 1)

Scale factor for positions.

center : array-like or None

Coordinate pair around which to center the layout.

Returns

pos : dict

A dictionary of positions keyed by node.

Position nodes in layers of straight lines.

Examples

>>> G = nx.complete_multipartite_graph(28, 16, 10)
... pos = nx.multipartite_layout(G)
See :

Back References

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

networkx.drawing.layout.multipartite_layout

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/drawing/layout.py#1028
type: <class 'function'>
Commit: