I've looked at a number of packages for graph layout (Graphviz, Gephi, Cytoscape, NetworkX to name a few of the more prevalent) and none of them seem to scale to this sort of size. What techniques exist for either visualizing graphs of this size or reducing them to something more manageable?

link|improve this question

My guess is that the main computational bottleneck is the density. Have you tried clustering into "super vertices" first, plotting them instead? docs.google.com/viewer?url=http://www.elsevier.com/… – spenthil Nov 2 '10 at 3:53
I've tried some thinning out of my edges, but I don't really want to settle w/r/t nodes. That might be useful for a multiscale algorithm though -- thanks! – sbirch Nov 3 '10 at 19:40
feedback

2 Answers

up vote 1 down vote accepted

On November 5th, four days after your question was posted, Gephi announced the release of a new visualisation plugin called OpenOrd that scales to millions of nodes. Perhaps it can help you.

link|improve this answer
feedback

I've used the visualisation toolkit Processing for visualising networks of about 30K nodes. It won't have any problems rendering your nodes but you'll need to remove some of your edges, perhaps remove those with the lowest weight (if it's weighted), or, as suggested elsewhere, construct a hypergraph.

There's no networks library for Processing at this time, so there's no access to layout algorithms etc, you'll have to implement it yourself, bit it's pretty quick to do. I've been considering publishing a library to aid this kind of visualisation.

http://www.processing.org

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.