Network / relationship / connection type diagrams in Python

Does anyone know a library for building relationships between different elements to show a visualization of their interconnectedness in Python?

I don’t even understand how these graphs are called. The best example is something like a Visual Thesaurus .

I am a little familiar with Matplotlib, but have not seen this type of plot.

+3
source share
2 answers

I think networkx fits your purpose. Networkx uses matplotlib to visualize the generated graph.

+6
source

pydot: GraphViz, . , .

gallery , GraphViz, , !

+3

All Articles