Visualizing Undirected Graph That's Too Large for GraphViz?

前端 未结 17 805
自闭症患者
自闭症患者 2020-11-30 17:18

I need advice for rendering an undirected graph with 178,000 nodes and 500,000 edges. I\'ve tried Neato, Tulip, and Cytoscape. Neato doesn\'t even come remotely close, and

相关标签:
17条回答
  • 2020-11-30 17:38

    Try Gephi, it has a new layout plugin called OpenOrd that scales to millions of nodes.

    0 讨论(0)
  • 2020-11-30 17:39

    BioFabric (www.BioFabric.org) is another tool for visualizing large graphs. It should be able to handle the network described (178,000 nodes and 500,000 edges) OK, though the initial layout may take awhile. The network show here (from the Stanford Large Network Dataset Collection) is the Stanford Web Network, which has 281,903 nodes and 2,312,497 edges:

    Stanford Web Network BioFabric's scalability is due to the fact that it represents nodes not as points, but as horizontal lines. The edges are then shown as vertical lines. For some intuition about how this works, there is the Super-Quick BioFabric Demo, which is a small network that is animated using D3.

    The primary application is written in Java. At the moment, it can only export PNG images, not PDFs. There is a PDF export option from RBioFabric, though that is a very simple implementation that cannot handle really large networks yet.

    Full disclosure: BioFabric is a tool that I wrote.

    0 讨论(0)
  • 2020-11-30 17:39

    You could try aiSee: http://www.aisee.com/manual/unix/56.htm

    0 讨论(0)
  • 2020-11-30 17:40

    A windows tool that can visualize graphs is pajek, it generates a eps output, however I don't know if it can read your data.

    0 讨论(0)
  • 2020-11-30 17:42

    Does it need to be truly accurate?

    Depending on what you're trying to accomplish it might be good enough to just graph 10% or 1% of the data volume. (of course, it might also be completely useless, but it all depends on what the visualization is for)

    0 讨论(0)
  • 2020-11-30 17:45

    Check out the Java/Jython based GUESS: http://graphexploration.cond.org/

    0 讨论(0)
提交回复
热议问题