[ASK] Tools to visualize graph

Anyone aware of good tools to visualize big graph? Preferably interactive ones?
I know graphviz and zgrviewer, but they tend to be unresponsive once the graph hits few hundred nodes/edges.

2 Likes

I don’t know any tools that would be both interactive and embeddable into a webpage (i.e. a JavaScript implementation). However, if an interactive Python instance suffices, I like to use NetworkX.https://networkx.github.io/

2 Likes