Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Plotting network / relationship / connection type graphs in Python [closed]

Does anyone know a library to plot relationships between various items to show visualize their interconnectedness in Python?

I don't even now what these graphs are called. The best example is something like Visual Thesaurus.

I'm somewhat familiar with Matplotlib but haven't seen this type of plot.

like image 316
Jason Wirth Avatar asked Dec 20 '22 23:12

Jason Wirth


1 Answers

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

like image 105
Abhijit Avatar answered May 25 '23 20:05

Abhijit