Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

A hypergraph is a generalization of a graph where the edges may include more than two vertices. Here's an example from the wikipedia article:

Example of a hypergraph

I'm looking for a good tool for standard visualization of such graphs. I'm well aware that a hypergraph can be mapped to a regular graph, for example, by adding virtual "hub" vertices. I can then visualize the resulting graph, but this does not visually convey the hyperedges as clearly as the diagram above.

Here are the tools I found. Are there any better ones?

Some excellent documents on visualizing hypergraphs which imply that the authors implemented some visualization capability:

share|improve this question

2 Answers

up vote 9 down vote accepted
+50

It turns out that laying out/drawing hypergraphs is a difficult computational problem (https://mailman.research.att.com/pipermail/graphviz-interest/2006q1/003421.html). You can see how it's equivalent to drawing Venn/Euler diagrams.

The Graphviz program (a well-known graph visualization package) recently added the gvmap command, which supposedly lets you draw Euler diagrams (you can then easily draw the points). I tried this, but I couldn't find the relevant option. If you go this route, I recommend inquiring on the mailing list.

python-graph doesn't seem to be a graph visualization library itself; it just exports to graphviz's DOT format. This export routine does appear to support hypergraphs, so try that.

share|improve this answer
the att.com link is down :( – Alex Gittemeier Mar 6 at 21:36

yed a free (but not open source) editor for graphs can visualize subgraphs, which I guess could be concidered a special of hypergraph.

I use it in degraph to results like this: https://github.com/schauder/degraph/wiki/Examples

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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