Gagan Walia
Gagan Walia

Reputation: 181

Graph visualization tool

I have an edge list of graph Nodes are strings, NOT numbers Also there can be thousands of edges Can anyone suggest me a graph visualisation tool which accepts graph info in some format -json, CSV etc. And visualizes large graphs. Also it works with graph having strings as nodes

Upvotes: 3

Views: 2776

Answers (2)

Robert Haas
Robert Haas

Reputation: 900

Standalone tools:

Python packages:

JavaScript libraries:

Upvotes: 4

Gagan Walia
Gagan Walia

Reputation: 181

Graphviz is open source graph visualization software. Graph visualization is a way of representing structural information as diagrams of abstract graphs and networks. It has important applications in networking, bioinformatics, software engineering, database and web design, machine learning, and in visual interfaces for other technical domains.

Gephi is the leading visualization and exploration software for all kinds of graphs and networks. Gephi is open-source and free.

Runs on Windows, Mac OS X and Linux.

Upvotes: 3

Related Questions