Visualize big graphs [closed]

2019-02-02 00:17发布

I have a graph with 690,024 nodes and 7,398,042 edges and want to visualize it. I have used graphviz's dot and gephi but both terminates because of low memory. Is there any way to fix this issue?

5条回答
做个烂人
2楼-- · 2019-02-02 00:37

Gephi has a limit based on amount of memory allocated to it in JVM. Check this http://gephi.org/users/requirements/ to make changes.
I would suggest to use Stanford Network Analysis Platform (SNAP) .
The core SNAP library is written in C++ and optimized for maximum performance and compact graph representation.
It easily scales to massive networks with hundreds of millions of nodes, and billions of edges. It efficiently manipulates large graphs, calculates structural properties, generates regular and random graphs, and supports attributes on nodes and edges. Besides scalability to large graphs, an additional strength of SNAP is that nodes, edges and attributes in a graph or a network can be changed dynamically during the computation.

查看更多
贪生不怕死
3楼-- · 2019-02-02 00:44

We've been building http://www.github.com/graphistry/pygraphistry to enable doing this from most browsers and notebooks. The idea is to use WebGL to render the big graphs (pan/zoom/etc.), and offload most of the real-time compute (layout, filter, etc.) to a GPU cloud. It's similar to Gephi and Cytoscape, but with more of a focus on scaling to big graphs and streamlining data analysis, and integrating into web apps and notebook environments.

查看更多
对你真心纯属浪费
4楼-- · 2019-02-02 00:54

You may want to consider Hive plots if you need to visualize relationships among all edges for a graph of this size. If you need to construct a graph where nodes and edges are displayed, you may want to try igraph, which has a Python and R interface. I've constructed some very large graphs using igraph through R, but I can't recall the memory requirements (this would probably be dependent on the data anyway).

查看更多
我命由我不由天
5楼-- · 2019-02-02 00:55
ら.Afraid
6楼-- · 2019-02-02 00:58

Try Tulip. I've downloaded the source and rebuilt, it's easy when you have installed Qt SDK.

edit I think that graphviz processor for large graphs should be sfdp, see the first discussion (loading very large graph failed)

查看更多
登录 后发表回答